diff options
Diffstat (limited to 'pkg')
-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 |