From 8c673ef4b2d7b0a00e6fff5a00745543e31f085d Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Mon, 25 Oct 2021 14:26:05 +0200 Subject: [PATCH] Try again --- compile_windows.bat | 8 ++++---- scripts/run_windows.bat | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compile_windows.bat b/compile_windows.bat index fa9057a..95d2669 100755 --- a/compile_windows.bat +++ b/compile_windows.bat @@ -1,10 +1,10 @@ @echo off if ("%2"=="") ( ^ - echo Usage: compile_windows.bat && ^ - echo && ^ - echo architecture: the target architecture to build for. Architectures are the docker architectures (e.g. 386 or amd64). && ^ - echo buildType: either Release or Debug && ^ + echo "Usage: compile_windows.bat " && ^ + echo "" && ^ + echo "architecture: the target architecture to build for. Architectures are the docker architectures (e.g. 386 or amd64)." && ^ + echo "buildType: either Release or Debug" && ^ exit 1 ^ ) diff --git a/scripts/run_windows.bat b/scripts/run_windows.bat index faa77b1..2b02e6f 100644 --- a/scripts/run_windows.bat +++ b/scripts/run_windows.bat @@ -1,12 +1,12 @@ @echo off -if "%TARGETARCH%"=="386" (echo Building 32-bit version) ^ -else (echo Building 64-bit version) +if "%TARGETARCH%"=="386" (echo "Building 32-bit version") ^ +else (echo "Building 64-bit version") #Check residency of workdir cd C: -if exists jcef\README.md (echo Found existing files to build) ^ -else (echo Did not find files to build - cloning... && rmdir /S /Q jcef && git clone https://bitbucket.org/chromiumembedded/java-cef jcef) +if exists "jcef\README.md" (echo "Found existing files to build") ^ +else (echo "Did not find files to build - cloning..." && rmdir /S /Q jcef && git clone https://bitbucket.org/chromiumembedded/java-cef jcef) cd jcef #Prepare build dir