mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix shellcheck warning
* build-aux/update-subdirs: Fix issue indicated by the shellcheck linter (warning SC2046).
This commit is contained in:
parent
2788557000
commit
797ff44d53
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue