Skip to content

Commit d3db1e5

Browse files
committed
Fix path error
1 parent a40ceeb commit d3db1e5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cobalt/testing/tools/process_size_artifacts.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ for artifact_dir in size_artifacts/size_artifacts_*; do
4545

4646
echo "Running Check binary size for $PLATFORM"
4747
chmod +x "$RUNNER_PATH"
48-
python3 "$RUNNER_PATH"
48+
pushd "$(dirname "$RUNNER_PATH")"
49+
python3 "$(basename "$RUNNER_PATH")"
50+
popd
4951

5052
find_file "perf_results.json" "$artifact_dir" "SIZES_PATH" || continue
5153

0 commit comments

Comments
 (0)