diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2024-08-26 01:52:43 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2024-08-26 01:52:43 +0100 |
commit | 33582641a9c01a6a3d62ae232f96c74299182885 (patch) | |
tree | e94bac4f028cf38d22e0bec1b3bd5827dffb0946 /tools/mkbindist.bat | |
parent | 0ad204f21940745c35a665e3f367b9331322c3f4 (diff) |
Add update notes and bump zip version for releasev0.7-BETA
Diffstat (limited to 'tools/mkbindist.bat')
-rw-r--r-- | tools/mkbindist.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat index b9512cc..b492ec6 100644 --- a/tools/mkbindist.bat +++ b/tools/mkbindist.bat @@ -21,8 +21,8 @@ md TEMP-%name% || exit /B copy sst.dll TEMP-%name%\sst.dll || exit /B
copy dist\LICENCE.windows TEMP-%name%\LICENCE || exit /B
:: using midnight on release day to make zip deterministic! change on next release!
-powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2024, 5, 28, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2024, 5, 28, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2024, 8, 26, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2024, 8, 26, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || exit /B
move %name%.zip ..\release\%name%.zip
|