Fixed replace in file function with proper substitution

This commit is contained in:
thibault.dewailly 2016-05-03 11:25:37 +02:00
parent 612e28b16f
commit e902c9b4c8

View File

@ -138,7 +138,7 @@ replace_in_file() {
backup_file "$FILE"
debug "Replacing $SOURCE to $DESTINATION in $FILE"
SOURCE=$(sed 's@/@\\\/@g' <<< $PATTERN)
SOURCE=$(sed 's@/@\\\/@g' <<< $SOURCE)
debug "sed -i 's/$SOURCE/$DESTINATION/g' $FILE"
sed -i "s/$SOURCE/$DESTINATION/g" $FILE
FNRET=0