From d39aa4476fb33361d2479c5ccd74f3e5caf2b01e Mon Sep 17 00:00:00 2001 From: Marco Antonio Jaguaribe Costa Date: Sat, 13 Jul 2024 08:55:09 -0300 Subject: [PATCH] Use system TMP directories instead of hard coding Some users might set their TMP (and TEMP) environment variables somewhere other than C: for various reasons This is set by default in all Windows install so it doesn't break anything for anyone using it --- buildall.bat | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/buildall.bat b/buildall.bat index c0fd6266..4d3d41e1 100644 --- a/buildall.bat +++ b/buildall.bat @@ -1,17 +1,17 @@ -rmdir /q/s c:\tmp\publish-wj\app -rmdir /q/s c:\tmp\publish-wj\launcher +rmdir /q/s %TMP%\publish-wj\app +rmdir /q/s %TMP%\publish-wj\launcher python scripts\version_extract.py > VERSION.txt SET /p VERSION=