diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-05-05 02:11:13 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-05-05 02:11:13 +0100 |
commit | cc9785e38cd1414d6d675364e5089f907b7b0a30 (patch) | |
tree | 4e232ca91c6118cf060fb1c3fccd7d1eaa42d1c5 /tools/mkbindist.bat | |
parent | 63f0e42faa98ef0c3776d8c887b991a2555cc8df (diff) |
Set the zip dates to today for final releasev0.3-BETA
Diffstat (limited to 'tools/mkbindist.bat')
-rw-r--r-- | tools/mkbindist.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat index 75d4ea1..5fbce17 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! consider changing on next actual release date!
-powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2022, 1, 1, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2022, 1, 1, 0, 0, 0
+:: 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
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || exit /B
move %name%.zip ..\release\%name%.zip
|