summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-05-31 20:38:31 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-05-31 21:00:06 +0100
commit1eff445a270a422ba94ede3205be739e998e530f (patch)
treec89826e533003c6b4318469d6d299877613921b5 /tools
parentab53d435d353b3d34f5453ee657e96e9d55f1ff8 (diff)
Bump version number and zip dates
Preparing for release, I spose!
Diffstat (limited to 'tools')
-rw-r--r--tools/mkbindist.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat
index 5fbce17..20cca90 100644
--- a/tools/mkbindist.bat
+++ b/tools/mkbindist.bat
@@ -20,9 +20,9 @@ set name=sst-v%major%.%minor%-BETA-win32
md TEMP-%name% || exit /B
copy sst.dll TEMP-%name%\sst.dll || exit /B
copy dist\LICENCE.windows TEMP-%name%\LICENCE || exit /B
-:: arbitrary dates to make zip deterministic! change on next actual release date!
-powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2022, 5, 5, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2022, 5, 5, 0, 0, 0
+:: using midnight on release day to make zip deterministic! change on next release!
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2022, 5, 31, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2022, 5, 31, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || exit /B
move %name%.zip ..\release\%name%.zip