modify bat to produce zip releases

This commit is contained in:
freedom
2023-08-16 03:18:32 -06:00
parent 6aaabd480a
commit 2972d54777
4 changed files with 4 additions and 16 deletions

1
.gitignore vendored
View File

@@ -57,3 +57,4 @@ dkms.conf
/bin/
/misc/supermiumman.png
/bin.7z
*.zip

View File

@@ -1,6 +0,0 @@
del /s "%~dp0\*.7z"
del /s "%~dp0\*.rar"
7z a -r "%~dp0\bin.7z" "%~dp0bin\*.exe"
WinRAR a -r "%~dp0\bin.rar" "%~dp0bin\*.exe"
del /s "%~dp0bin\*.exe"
pause

View File

@@ -1,10 +0,0 @@
@echo on
msbuild Program-Manager-II.sln -target:progmgr
del /s "%~dp0\*.7z"
del /s "%~dp0\*.rar"
del /s "%~dp0bin\*.exe"
7z a -r "%~dp0\bin.7z" "%~dp0\bin\*.exe"
WinRAR a -r "%~dp0\bin.rar" "%~dp0\bin\*.exe"
pause

3
zipbuild.bat Normal file
View File

@@ -0,0 +1,3 @@
del /s "%~dp0\*.zip"
7z a -r "%~dp0\bin.zip" "%~dp0bin\*.exe"
pause