diff --git a/.gitignore b/.gitignore index 6b1a37d..0e3db09 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ **/*.egg-info/ **/config.json **/tra_analysis/ +**/temp/* **/errorlog.txt /dist/superscript.* diff --git a/build/build-CLI.bat b/build/build-CLI.bat index 77790bb..522e5fc 100644 --- a/build/build-CLI.bat +++ b/build/build-CLI.bat @@ -1,5 +1,5 @@ set pathtospec="../src/superscript.spec" set pathtodist="../dist/" -set pathtowork="/temp/" +set pathtowork="temp/" pyinstaller --onefile --clean --distpath %pathtodist% --workpath %pathtowork% %pathtospec% \ No newline at end of file diff --git a/build/build-CLI.sh b/build/build-CLI.sh index 8d8a0b8..9837f2a 100644 --- a/build/build-CLI.sh +++ b/build/build-CLI.sh @@ -1,5 +1,5 @@ pathtospec="../src/superscript.spec" pathtodist="../dist/" -pathtowork="/temp/" +pathtowork="temp/" pyinstaller --onefile --clean --distpath ${pathtodist} --workpath ${pathtowork} ${pathtospec} \ No newline at end of file