From 11d16ab06c36948c053c507f5f9e06ff3de221c7 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Fri, 25 Nov 2011 14:39:57 +0700 Subject: maint: quote $file correctly in bootstrap. * bootstrap (func_insert_sorted_if_absent): Don't forget the double quotes, since we can't control the content of $file. Reported by Steffano Lattarini. Signed-off-by: Gary V. Vaughan --- bootstrap | 6 +++--- 1 file 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 } -- cgit v1.2.1