fixed pathing for build-CLI.*

added temp directory to gitignore
This commit is contained in:
Arthur Lu 2021-04-27 07:26:14 +00:00
parent 139410f7f0
commit 73888cbc9e
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@
**/*.egg-info/ **/*.egg-info/
**/config.json **/config.json
**/tra_analysis/ **/tra_analysis/
**/temp/*
**/errorlog.txt **/errorlog.txt
/dist/superscript.* /dist/superscript.*

View File

@ -1,5 +1,5 @@
set pathtospec="../src/superscript.spec" set pathtospec="../src/superscript.spec"
set pathtodist="../dist/" set pathtodist="../dist/"
set pathtowork="/temp/" set pathtowork="temp/"
pyinstaller --onefile --clean --distpath %pathtodist% --workpath %pathtowork% %pathtospec% pyinstaller --onefile --clean --distpath %pathtodist% --workpath %pathtowork% %pathtospec%

View File

@ -1,5 +1,5 @@
pathtospec="../src/superscript.spec" pathtospec="../src/superscript.spec"
pathtodist="../dist/" pathtodist="../dist/"
pathtowork="/temp/" pathtowork="temp/"
pyinstaller --onefile --clean --distpath ${pathtodist} --workpath ${pathtowork} ${pathtospec} pyinstaller --onefile --clean --distpath ${pathtodist} --workpath ${pathtowork} ${pathtospec}