Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Commit 3422905

Browse files
committed
Add bash script to generate executables
1 parent 31f5662 commit 3422905

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

genexes.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pip='pip install pyinstaller'
2+
3+
gen64="pyinstaller -F --distpath dist --workpath build -n pdf-splitter-64 pdf-splitter/main.py"
4+
source venv/Scripts/activate
5+
$pip
6+
$gen64
7+
8+
gen32="pyinstaller -F --distpath dist32 --workpath build32 -n pdf-splitter-32 pdf-splitter/main.py"
9+
source venv32/Scripts/activate
10+
$pip
11+
$gen32

0 commit comments

Comments
 (0)