mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-19 22:06:38 +08:00
Attempt to fix syntax error
This commit is contained in:
parent
96310d6bea
commit
a4037ec6b9
4
.github/workflows/build-windows.yml
vendored
4
.github/workflows/build-windows.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
name: Build
|
||||
shell: cmd
|
||||
run: |
|
||||
cmd.exe /k compile_windows.bat amd64 Release
|
||||
compile_windows.bat amd64 Release
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
@ -31,7 +31,7 @@ jobs:
|
||||
name: Build
|
||||
shell: cmd
|
||||
run: |
|
||||
cmd.exe /k compile_windows.bat 386 Release
|
||||
compile_windows.bat 386 Release
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
|
@ -1,11 +1,11 @@
|
||||
@echo off
|
||||
|
||||
if ("%2"=="")(
|
||||
echo "Usage: compile_windows.bat <architecture> <buildType>"
|
||||
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
|
||||
if ("%2"=="") ( ^
|
||||
echo "Usage: compile_windows.bat <architecture> <buildType>" && ^
|
||||
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 ^
|
||||
)
|
||||
|
||||
#Execute build with windows Dockerfile
|
||||
|
Loading…
Reference in New Issue
Block a user