summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-08-22 15:05:22 -0300
committerDuda Dornelles <ddornell@thoughtworks.com>2014-08-22 15:05:22 -0300
commitbced8bdb030be444245da61df1cf2edc6625d544 (patch)
treed02727afdc6ce4e422366bdeb0550eda9782b0b3 /package
parent004295c4302ad4d2400a708e77f05cf53a116cae (diff)
removing double quotes from sed since that is only needed in mac os and not in debian
Diffstat (limited to 'package')
-rwxr-xr-xpackage/package_user_agent.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/package_user_agent.sh b/package/package_user_agent.sh
index 4aa67a70..27723a8d 100755
--- a/package/package_user_agent.sh
+++ b/package/package_user_agent.sh
@@ -41,7 +41,7 @@ pip install --upgrade setuptools
deactivate
cd $PIXELATED_VIRTUALENV_PATH
for file in $(grep -l '/tmp/pix-user-agent-build' bin/*); do
- sed -i '' 's|/tmp/pix-user-agent-build||' $file;
+ sed -i 's|/tmp/pix-user-agent-build||' $file;
done
cd -
cd ..