Skip to content

Commit

Permalink
Update release script to include dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro Mautone committed Jan 2, 2024
1 parent 8c06e79 commit 647a1d9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pyinstaller_script_default.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/env bash

# Install pyinstaller
pyinstaller_version=$(pyinstaller --version 2>/dev/null)
if [ "$pyinstaller_version" != "5.9" ]; then
pip install pyinstaller==5.9
fi

rm -rf build
rm -rf dist
pyinstaller cli.py --name SimpleAdb --add-data "assets/*.png" -F
pyinstaller cli.py --name SimpleAdb --add-data "./assets/*.png:assets" -F

0 comments on commit 647a1d9

Please sign in to comment.