Skip to content

Commit f1ff588

Browse files
committed
Update free-disk-space.sh
1 parent 6a1498a commit f1ff588

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ci/scripts/free-disk-space.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ if [[ "$1" == "start" ]]; then
1111
else
1212
$script_dir/free-disk-space-linux.sh &> $log &
1313
fi
14+
FREE_DISK_SPACE_PID=$! >> $GITHUB_ENV
1415
elif [[ "$1" == "report" ]]; then
15-
wait
16+
wait $FREE_DISK_SPACE_PID
1617
exit_code=$?
1718
cat $log
1819
exit $exit_code

0 commit comments

Comments
 (0)