From: Simon Ruderich Date: Tue, 20 Apr 2021 17:52:01 +0000 (+0200) Subject: ci: use ./* in `rm -rf` to guard against option-like filenames X-Git-Url: https://ruderich.org/simon/gitweb/?p=safcm%2Fsafcm.git;a=commitdiff_plain;h=318619e760d6235573dc14c119618a12f8b4eb6f ci: use ./* in `rm -rf` to guard against option-like filenames This won't be an issue in our case but it's good practice anyway. Found by shellcheck --- diff --git a/ci/run b/ci/run index 25b0642..472502c 100755 --- a/ci/run +++ b/ci/run @@ -17,7 +17,7 @@ make test $flags # Strict umask umask 077 -rm -rf * +rm -rf ./* git checkout . make $flags make test $flags