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

@ -12,4 +12,4 @@ if ("%2"=="") ( ^
docker build -t jcefbuild --file DockerfileWindows .
:: Execute run with windows Dockerfile
docker run -v jcef:c:/jcef -v out:c:/out -e TARGETARCH=%1 -e BUILD_TYPE=%2 jcefbuild
docker run -v jcef:/c/jcef -v out:/c/out -e TARGETARCH=%1 -e BUILD_TYPE=%2 jcefbuild

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