summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common b/src/common
index 01e52b8..d20d306 100644
--- a/src/common
+++ b/src/common
@@ -85,7 +85,7 @@ remove_line() {
# if the line is there are removed, return 0
if [ "$file" -a "$string" ] ; then
- grep -v "$string" "$file" | sponge "$file"
+ grep -v -F "$string" "$file" | sponge "$file"
return 0
# otherwise return 1
else