From 318619e760d6235573dc14c119618a12f8b4eb6f Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 20 Apr 2021 19:52:01 +0200 Subject: [PATCH] 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 --- ci/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.2