Skip to content

Commit 280367f

Browse files
committed
Update free-disk-space.sh
1 parent 09b3a79 commit 280367f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ set -euo pipefail
33

44
log=/tmp/free-disk-space.log
55

6-
if [[ "$1" == "start"]]; then
6+
if [[ "$1" == "start" ]]; then
77
# Run scripts in the background.
88
if [[ "${RUNNER_OS:-}" == "Windows" ]]; then
99
pwsh free-disk-space-windows.ps1 &> $log &
1010
else
1111
free-disk-space-linux.sh &> $log &
1212
fi
13-
elif [[ "$1" == "report"]]; then
13+
elif [[ "$1" == "report" ]]; then
1414
exit_code=wait
1515
cat $log
1616
exit $exit_code

0 commit comments

Comments
 (0)