From 09acfeaf68cc2af96dec20f62b3644f4fd8cf30f Mon Sep 17 00:00:00 2001 From: Nicolas Chan Date: Sun, 11 Aug 2024 00:43:00 -0700 Subject: [PATCH] Address shellcheck warning --- test/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.sh b/test/test.sh index 31199da..ca38835 100755 --- a/test/test.sh +++ b/test/test.sh @@ -50,7 +50,7 @@ assert-equals-directory () { fi if [ -d "$1" ]; then for FILE in "$1"/*; do - assert-equals-directory "$FILE" "$2/${FILE##$1}" + assert-equals-directory "$FILE" "$2/${FILE##"$1"}" done else assertEquals "$(cat "$1")" "$(cat "$2")"