File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/bash
2+
3+ if [ -z " $1 " ]; then
4+ executable=" python3"
5+ else
6+ executable=" $1 "
7+ fi
8+
9+ echo Building ContentBuilder
10+
11+ $executable -m PyInstaller --distpath ./dist/ContentBuilder/ --workpath ./build/ -y ./ContentBuilder/ContentBuilder.spec
12+ cp -r ContentBuilder/bundle/* dist/ContentBuilder/
13+ chmod +x dist/ContentBuilder/ContentBuilder
14+
15+ echo Building DuplicateChecker
16+
17+ $executable -m PyInstaller --distpath ./dist/DuplicateChecker/ --workpath ./build/ -y ./DuplicateChecker/DuplicateChecker.spec
18+ cp -r DuplicateChecker/bundle/* dist/DuplicateChecker/
19+ chmod +x dist/DuplicateChecker/DuplicateChecker
20+
21+ $executable -m PyInstaller --distpath ./dist/MapCompiler/ --workpath ./build/ -y ./MapCompiler/MapCompiler.spec
22+ cp -r MapCompiler/bundle/* dist/MapCompiler/
23+ chmod +x dist/MapCompiler/MapCompiler
24+
25+ echo Build done!
You can’t perform that action at this time.
0 commit comments