summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap b/bootstrap
index 8776e219..6ae2feb5 100755
--- a/bootstrap
+++ b/bootstrap
@@ -2051,13 +2051,13 @@ func_insert_sorted_if_absent ()
for file
do
- test -f $file || touch $file
+ test -f "$file" || touch "$file"
func_grep_q "$str" "$file" \
&& func_verbose "inserting \`$str' into \`$file'"
- echo "$str" |sort -u - $file |func_cmp_s - $file \
- || echo "$str" |sort -u - $file -o $file \
+ echo "$str" |sort -u - "$file" |func_cmp_s - "$file" \
+ || echo "$str" |sort -u - "$file" -o "$file" \
|| func_permissions_error "$file"
done
}