mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
Fix redundant double slash in script path.
The path to `post_build_ninja_summary.py` contained `//` instead of `/`. This change corrects the path. Change-Id: I7ccc892877b50460a2eb12a7ace721c80ce1ea9e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/7043986 Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Richard Wang <richardwa@google.com> Commit-Queue: Richard Wang <richardwa@google.com> Commit-Queue: Takuto Ikuta <tikuta@chromium.org>
This commit is contained in:
@@ -23,7 +23,7 @@ python_path="${scriptdir}/python-bin/python3"
|
||||
retval=$?
|
||||
|
||||
if [ "$retval" == "0" ] && [ "$NINJA_SUMMARIZE_BUILD" == "1" ]; then
|
||||
"${python_path}" "${scriptdir}//post_build_ninja_summary.py" "$@"
|
||||
"${python_path}" "${scriptdir}/post_build_ninja_summary.py" "$@"
|
||||
fi
|
||||
|
||||
# Pass-through autoninja's error code so that if a developer types:
|
||||
|
||||
Reference in New Issue
Block a user