aboutsummaryrefslogtreecommitdiff
path: root/fix_headers.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fix_headers.sh')
-rwxr-xr-xfix_headers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/fix_headers.sh b/fix_headers.sh
index b1b0844..51ce18e 100755
--- a/fix_headers.sh
+++ b/fix_headers.sh
@@ -6,7 +6,7 @@ function fix_tr1() {
grep $1 $INPUT_FILE > /dev/null 2>&1
if [ $? -eq 0 ] ; then
echo "Modifying $INPUT_FILE ..."
- sed -e "s/$1/$2/g" $INPUT_FILE > .tmp
+ sed 's/$1/$2/g' $INPUT_FILE > .tmp
if [ $? -ne 0 ] ; then
echo "sed failed!"
return 1