Skip to content

Commit a149fb3

Browse files
authored
Need quotes around module variable (#208)
1 parent f37267a commit a149fb3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,10 +437,13 @@ jobs:
437437
# The latest patch versions for each minor version.
438438
version: ${{ fromJson(needs.build-matrix.outputs.versions) }}
439439
module:
440+
- base
440441
- windows-il2cpp
441442
- universal-windows-platform
442443
- appletv
443444
include:
445+
- module: base
446+
platform: StandaloneWindows64
444447
- module: windows-il2cpp
445448
platform: StandaloneWindows64
446449
- module: appletv

images/windows/editor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN powershell -Command "&'C:/Program Files/Unity Hub/Unity Hub.exe' '--%' '--no
2020
else { exit 0 }"
2121

2222
ARG module
23-
RUN IF NOT %module% == "base" ( \
23+
RUN IF NOT "%module%"=="base" ( \
2424
powershell -Command \
2525
"&'C:/Program Files/Unity Hub/Unity Hub.exe' '--%' '--no-sandbox --headless \
2626
install-modules --version %version% --module %module% --childModules' 2>$null | \

0 commit comments

Comments
 (0)