Skip to content

Commit

Permalink
Need quotes around module variable (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKahr authored Apr 13, 2023
1 parent f37267a commit a149fb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -437,10 +437,13 @@ jobs:
# The latest patch versions for each minor version.
version: ${{ fromJson(needs.build-matrix.outputs.versions) }}
module:
- base
- windows-il2cpp
- universal-windows-platform
- appletv
include:
- module: base
platform: StandaloneWindows64
- module: windows-il2cpp
platform: StandaloneWindows64
- module: appletv
Expand Down
2 changes: 1 addition & 1 deletion images/windows/editor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN powershell -Command "&'C:/Program Files/Unity Hub/Unity Hub.exe' '--%' '--no
else { exit 0 }"

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

0 comments on commit a149fb3

Please sign in to comment.