bug 10855: fix a typo when merging git conflicts

This commit is contained in:
Kelven Yang 2011-07-26 10:48:54 -07:00
parent db09c6ae47
commit 3e8fb4add2

View File

@ -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=$?