From 40191aa6b57df168ee02794134b736f922a88742 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 27 Apr 2021 07:26:14 +0000 Subject: [PATCH] fixed pathing for build-CLI.* added temp directory to gitignore Former-commit-id: 73888cbc9ef9451dfa077812cdeace86393ec7db --- .gitignore | 1 + build/build-CLI.bat | 2 +- build/build-CLI.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) 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