We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b3a79 commit 280367fCopy full SHA for 280367f
src/ci/scripts/free-disk-space.sh
@@ -3,14 +3,14 @@ set -euo pipefail
3
4
log=/tmp/free-disk-space.log
5
6
-if [[ "$1" == "start"]]; then
+if [[ "$1" == "start" ]]; then
7
# Run scripts in the background.
8
if [[ "${RUNNER_OS:-}" == "Windows" ]]; then
9
pwsh free-disk-space-windows.ps1 &> $log &
10
else
11
free-disk-space-linux.sh &> $log &
12
fi
13
-elif [[ "$1" == "report"]]; then
+elif [[ "$1" == "report" ]]; then
14
exit_code=wait
15
cat $log
16
exit $exit_code
0 commit comments