diff options
Diffstat (limited to 'pkg')
-rwxr-xr-x | pkg/build_bundle_with_venv.sh | 1 | ||||
-rw-r--r-- | pkg/pyinst/build.mk | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/pkg/build_bundle_with_venv.sh b/pkg/build_bundle_with_venv.sh index 929710a..848db96 100755 --- a/pkg/build_bundle_with_venv.sh +++ b/pkg/build_bundle_with_venv.sh @@ -16,4 +16,3 @@ $VIRTUAL_ENV/bin/pip uninstall leap.bitmask $VIRTUAL_ENV/bin/pip install . make bundle -make bundle_tar diff --git a/pkg/pyinst/build.mk b/pkg/pyinst/build.mk index 4a250d7..38038c5 100644 --- a/pkg/pyinst/build.mk +++ b/pkg/pyinst/build.mk @@ -5,6 +5,8 @@ bundle: bundle_clean cp $(VIRTUAL_ENV)/lib/python2.7/site-packages/_scrypt.so $(DIST) cp src/leap/bitmask/core/bitmaskd.tac $(DIST) mkdir $(DIST)/leap + mkdir -p $(DIST)/leap/soledad/common/l2db/backends + cp $(VIRTUAL_ENV)/lib/python2.7/site-packages/leap/soledad/common/l2db/backends/dbschema.sql $(DIST)/leap/soledad/common/l2db/backends/ cp -r $(VIRTUAL_ENV)/lib/python2.7/site-packages/leap/bitmask_js/ $(DIST)/leap mv $(DIST) _bundlelib && mkdir $(DIST_VERSION) && mv _bundlelib $(DIST_VERSION)/lib cd pkg/launcher && make |