diff --git a/compile_windows.bat b/compile_windows.bat index 1a296c8..8045458 100755 --- a/compile_windows.bat +++ b/compile_windows.bat @@ -12,4 +12,6 @@ if ("%2"=="") ( ^ docker build -t jcefbuild --file DockerfileWindows . :: Execute run with windows Dockerfile -docker run -v jcef:../jcef -v out:../out -e TARGETARCH=%1 -e BUILD_TYPE=%2 jcefbuild +if not exist "jcef" mkdir "jcef" +if not exist "out" mkdir "out" +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 61bef23..6726dea 100644 --- a/scripts/run_windows.bat +++ b/scripts/run_windows.bat @@ -1,4 +1,4 @@ -@echo on +@echo off if "%TARGETARCH%"=="386" (echo "Building 32-bit version") ^ else (echo "Building 64-bit version")