From 3e8fb4add25faafe522435863d0439929e6dd14c Mon Sep 17 00:00:00 2001 From: Kelven Yang Date: Tue, 26 Jul 2011 10:48:54 -0700 Subject: [PATCH] bug 10855: fix a typo when merging git conflicts --- patches/systemvm/debian/config/root/userdata.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/systemvm/debian/config/root/userdata.sh b/patches/systemvm/debian/config/root/userdata.sh index 6efdb13c221..2842680a2bd 100644 --- a/patches/systemvm/debian/config/root/userdata.sh +++ b/patches/systemvm/debian/config/root/userdata.sh @@ -46,7 +46,7 @@ create_htaccess() { #grep -w $file $htaccessFile grep -F `echo $entry` $htaccessFile - if [ \$? -gt 0 ]; then + if [ $? -gt 0 ]; then echo -e $entry >> $htaccessFile; fi result=$?