Skip to content

Commit d8314c2

Browse files
author
Christopher-Marcel Böddecker
committed
fix(templates): double if in conditional expressions in CI steps
1 parent 8cfe451 commit d8314c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/steps/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parameters:
66
unityVersion: ''
77

88
steps:
9-
- ${{ if if eq(parameters.unityProject, 'true') }}:
9+
- ${{ if eq(parameters.unityProject, 'true') }}:
1010
- powershell: |
1111
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
1212
Install-Module UnitySetup -Scope CurrentUser -Force
@@ -55,5 +55,5 @@ steps:
5555
configuration: ${{ parameters.msBuildConfiguration }}
5656
maximumCpuCount: true
5757
msbuildArchitecture: x64
58-
${{ if if eq(parameters.unityProject, 'true') }}:
58+
${{ if eq(parameters.unityProject, 'true') }}:
5959
msbuildArgs: /p:UnityEditorAssembliesPath="$(Unity.Path)Editor/Data/Managed/"

0 commit comments

Comments
 (0)