diff options
| author | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-24 17:17:01 +0300 |
|---|---|---|
| committer | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-24 17:17:01 +0300 |
| commit | cb5dc3268413897d9a9f0a36506fcc45f663b97f (patch) | |
| tree | 6747cee576738e173482261b2761421371c4f57b /build_local.sh | |
| parent | a2036a0b04cb4b57c23e29c92925265cfea401a8 (diff) | |
Add scripts for building executables
Diffstat (limited to 'build_local.sh')
| -rwxr-xr-x | build_local.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build_local.sh b/build_local.sh new file mode 100755 index 0000000..9d2e536 --- /dev/null +++ b/build_local.sh @@ -0,0 +1,13 @@ +# Remove old build +rm -rf build +rm -rf dist + +# Active venv +source .venv/bin/activate +pip install -r requirements.txt +pip install pyinstaller + +# Build +pyinstaller krr.py +cd dist +zip -r "krr-macos-v1.1.0.zip" krr
\ No newline at end of file |
