diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-16 11:28:21 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-30 16:18:46 -0400 |
commit | 6cb13e80a5e0ea1ab614d51e7ed831d6ec251306 (patch) | |
tree | d7bf94376370d35d04d9d6be01cbd17a62ac6d1c /pkg/build_bundle_with_venv.sh | |
parent | e074c4bd23f4386519dae02d5687270ba294f636 (diff) |
[tests] prepare to run behave against bundle
Diffstat (limited to 'pkg/build_bundle_with_venv.sh')
-rwxr-xr-x | pkg/build_bundle_with_venv.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pkg/build_bundle_with_venv.sh b/pkg/build_bundle_with_venv.sh index 706f17e5..17fc0a2e 100755 --- a/pkg/build_bundle_with_venv.sh +++ b/pkg/build_bundle_with_venv.sh @@ -49,9 +49,7 @@ $VIRTUAL_ENV/bin/python setup.py sdist bdist_wheel --universal echo "[+] Installing Bitmask from latest wheel..." $VIRTUAL_ENV/bin/pip install `ls -ltr dist/*.whl | tail -n 1 | cut -d' ' -f 9` - # Get the bundled libzmq -$VIRTUAL_ENV/bin/pip uninstall --yes pyzmq -$VIRTUAL_ENV/bin/pip install pyzmq --install-option="--zmq=bundled" +$VIRTUAL_ENV/bin/pip install -I pyzmq --install-option="--zmq=bundled" make bundle_linux |