Fix volume spec

This commit is contained in:
FriwiDev 2021-10-27 17:57:11 +02:00
parent b5d565f715
commit 022455ba55
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
@echo on
@echo off
if "%TARGETARCH%"=="386" (echo "Building 32-bit version") ^
else (echo "Building 64-bit version")