Skip to content

Commit 7cdc09e

Browse files
committed
tweak --clear-cache: use exec, so the exit code falls through
in case `rm -rf` fails
1 parent fb52d58 commit 7cdc09e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ else
4646
fi
4747

4848
# Hadle --clear-cache
49-
[[ "$1" == "--clear-cache" ]] && { rm -rf "$tmproot"; exit 0; }
49+
[[ "$1" == "--clear-cache" ]] && exec rm -rf "$tmproot"
5050

5151
# ensure our $CC and $CXX variables are set
5252
[[ -z "$CC" ]] && CC=cc

0 commit comments

Comments
 (0)