diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-10-21 16:56:41 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-10-21 17:17:30 -0400 |
commit | b9f8766d72728093f6183c289d23ecd8a1fa562f (patch) | |
tree | 8f82ba9b16743e2d77ae1c53d602eeb604f7968f /pkg/windows | |
parent | d063b5a2c32b867e5284121551951cc8e695aa9a (diff) |
[pkg] native pyinstaller packaging
Diffstat (limited to 'pkg/windows')
-rw-r--r-- | pkg/windows/build_native.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/windows/build_native.sh b/pkg/windows/build_native.sh new file mode 100644 index 0000000..4c19143 --- /dev/null +++ b/pkg/windows/build_native.sh @@ -0,0 +1,7 @@ +#!/bin/sh +rm -rf dist build +pip uninstall leap.bitmask +python setup.py bdist_wheel +pip install dist/*.whl +pyinstaller.exe -y pkg/pyinst/app.spec +pkg/pyinst/win_postbuild.bat |