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 db29f7792c
commit 9761661989
1 changed files with 1 additions and 1 deletions

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