From 797ff44d53ef4c4b800de8467b403c876cac3c1f Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Tue, 22 Sep 2020 02:33:42 +0200 Subject: [PATCH] Fix shellcheck warning * build-aux/update-subdirs: Fix issue indicated by the shellcheck linter (warning SC2046). --- build-aux/update-subdirs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/update-subdirs b/build-aux/update-subdirs index 336029fb710..96712f0b32e 100755 --- a/build-aux/update-subdirs +++ b/build-aux/update-subdirs @@ -26,7 +26,7 @@ for file in *; do *.elc | *.el | term | RCS | CVS | Old | . | .. | =* | *~ | *.orig | *.rej) ;; *) - if [ -d $file ]; then + if [ -d "$file" ]; then if [ "$file" = "obsolete" ]; then subdirs="$subdirs \"$file\"" else -- 2.39.2