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:
Takuto Ikuta
2025-10-14 23:17:27 -07:00
committed by LUCI CQ
parent 113c2c30f3
commit 88acbf25a4

View File

@@ -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: