Skip to content

Commit

Permalink
Made PyInstaller build Windows Git Bash compatible
Browse files Browse the repository at this point in the history
Changed pyinstaller_build.sh to use curl instead of wget
  • Loading branch information
thelabcat committed Apr 25, 2024
1 parent 13da292 commit 2e608fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyinstaller_build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
echo "Updating the English word frequency list"
rm large_en.msgpack.gz
wget https://raw.githubusercontent.com/rspeer/wordfreq/master/wordfreq/data/large_en.msgpack.gz
curl https://raw.githubusercontent.com/rspeer/wordfreq/master/wordfreq/data/large_en.msgpack.gz -o large_en.msgpack.gz
echo "Building exe"
pyinstaller -F --icon=bookworm_wordlist_editor.ico --add-data bookworm_wordlist_editor.png:. --add-data large_en.msgpack.gz:wordfreq/data/ bookworm_wordlist_editor.pyw
echo "Cleaning up exe build residue"
Expand Down

0 comments on commit 2e608fa

Please sign in to comment.