diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-06-10 20:09:27 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-06-10 20:09:27 +0100 |
commit | 02c48fa32f0065ec853958a1d7ee49f485241095 (patch) | |
tree | 674c1be786a4ec8a02aa2b4bdf1a9e84291aebff /tools/mkbindist.bat | |
parent | f84d44d2a9139f3c5b58d7875bc5ef0d94881008 (diff) |
Add update changelog and bump zip date
The zip date is tomorrow as that's the expected release date pending
some testing and hearing back from Portal people re official approval
for use in runs. With any luck it won't need to be bumped further.
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 20cca90..a00e44d 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 2022, 5, 31, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2022, 5, 31, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2023, 6, 11, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2023, 6, 11, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || exit /B
move %name%.zip ..\release\%name%.zip
|