summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwith-tmpdir2
1 files changed, 1 insertions, 1 deletions
diff --git a/with-tmpdir b/with-tmpdir
index 412c8c6..ebf712e 100755
--- a/with-tmpdir
+++ b/with-tmpdir
@@ -17,7 +17,7 @@ TMPDIR=$(mktemp -dt "$template")
cleanup() {
# ensure $PWD != $TMPDIR
cd /
- rm -vR "$TMPDIR"
+ rm -fR "$TMPDIR"
}
trap 'cleanup; trap - EXIT INT QUIT' \