Try to fix tar exporting

This commit is contained in:
FriwiDev
2021-10-27 17:18:14 +02:00
parent 8bba1a6625
commit 693155c6b3
2 changed files with 2 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ if "%TARGETARCH%"=="386" (call make_distrib.bat win32) else (call make_distrib.b
:: Zip results to C:\out
if "%TARGETARCH%"=="386" (cd ../binary_distrib/win32) else (cd ../binary_distrib/win64)
del /F C:\out\binary_distrib.tar.gz
if not exist "C:\out" mkdir "C:\out"
tar -czvf C:\out\binary_distrib.tar.gz *
GOTO :EOF