From 693155c6b3bede6a0557896bed4198d5c0ffe8c9 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Wed, 27 Oct 2021 17:18:14 +0200 Subject: [PATCH] Try to fix tar exporting --- compile_windows.bat | 2 +- scripts/run_windows.bat | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/compile_windows.bat b/compile_windows.bat index 6933582..ccbb8e5 100755 --- a/compile_windows.bat +++ b/compile_windows.bat @@ -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 diff --git a/scripts/run_windows.bat b/scripts/run_windows.bat index 7437046..29c278e 100644 --- a/scripts/run_windows.bat +++ b/scripts/run_windows.bat @@ -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