mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-11-14 13:13:41 +08:00
Try to fix tar exporting
This commit is contained in:
@@ -12,4 +12,4 @@ if ("%2"=="") ( ^
|
|||||||
docker build -t jcefbuild --file DockerfileWindows .
|
docker build -t jcefbuild --file DockerfileWindows .
|
||||||
|
|
||||||
:: Execute run with windows Dockerfile
|
:: 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
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ if "%TARGETARCH%"=="386" (call make_distrib.bat win32) else (call make_distrib.b
|
|||||||
:: Zip results to C:\out
|
:: Zip results to C:\out
|
||||||
if "%TARGETARCH%"=="386" (cd ../binary_distrib/win32) else (cd ../binary_distrib/win64)
|
if "%TARGETARCH%"=="386" (cd ../binary_distrib/win32) else (cd ../binary_distrib/win64)
|
||||||
del /F C:\out\binary_distrib.tar.gz
|
del /F C:\out\binary_distrib.tar.gz
|
||||||
|
if not exist "C:\out" mkdir "C:\out"
|
||||||
tar -czvf C:\out\binary_distrib.tar.gz *
|
tar -czvf C:\out\binary_distrib.tar.gz *
|
||||||
|
|
||||||
GOTO :EOF
|
GOTO :EOF
|
||||||
|
|||||||
Reference in New Issue
Block a user