From 0c95e11ec210548950764b3602ef33339f0bf07f Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 28 Sep 2022 12:50:52 +0100 Subject: Fixed missing quotes for files wiht spaces --- xibuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xibuild.sh') diff --git a/xibuild.sh b/xibuild.sh index 5060b1f..7964b10 100644 --- a/xibuild.sh +++ b/xibuild.sh @@ -117,7 +117,7 @@ xibuild_fetch () { [ "$(ls -1 | wc -l)" = "2" ] && for file in */* */.*; do - echo $file | grep -q '\.$' || mv $file . + echo "$file" | grep -q '\.$' || mv "$file" . done; for url in $ADDITIONAL; do -- cgit v1.2.1