From 2f61243c64ff7dfd7c54e317fc36968dcd3e6221 Mon Sep 17 00:00:00 2001 From: dcpc007 Date: Thu, 11 Apr 2019 16:17:46 +0200 Subject: [PATCH] add quote on variable in correct code, or we'll have SC2154 error --- SC2045.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2045.md b/SC2045.md index 2035a19..a88a9d1 100644 --- a/SC2045.md +++ b/SC2045.md @@ -11,7 +11,7 @@ for f in *.wav do - [[ -e $f ]] || break # handle the case of no *.wav files + [[ -e "$f" ]] || break # handle the case of no *.wav files echo "$f" done