diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-08-25 17:41:08 -0300 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-08-25 17:41:08 -0300 |
commit | 3b4b9eec1ae9ba3f7dfb1489a3099f9625db549e (patch) | |
tree | b4222743256ad044559a698348841cec5570c128 | |
parent | d8daae74723e6d50af3c839c15949676f77e2d4f (diff) |
instead of always unzip, just fixing scrypt by reinstalling. with unzipping we had weird issues with unzipped files permissions when installing the debian package
-rwxr-xr-x | package/package_user_agent.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/package_user_agent.sh b/package/package_user_agent.sh index c4bcec0f..35dd6c9d 100755 --- a/package/package_user_agent.sh +++ b/package/package_user_agent.sh @@ -3,7 +3,7 @@ # Copyright (c) 2014 ThoughtWorks, Inc. # # Pixelated is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by + # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # @@ -44,8 +44,9 @@ virtualenv $PIXELATED_VIRTUALENV_PATH . $PIXELATED_VIRTUALENV_PATH/bin/activate pip install --upgrade pip pip install --upgrade setuptools -python setup.py develop --always-unzip python setup.py install +pip uninstall -y scrypt +pip install scrypt deactivate cd $PIXELATED_VIRTUALENV_PATH |