Skip to content

Commit

Permalink
Fix bad null literal in buid yaml
Browse files Browse the repository at this point in the history
Work done for #196
  • Loading branch information
atruskie committed Mar 30, 2020
1 parent 2a3f654 commit de523ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/azure-pipelines-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
pool:
vmImage: ${{ platform.pool }}
variables:
${{ if eq(null, platform.rid) }}:
${{ if eq('', platform.rid) }}:
runtimeArgument: ''
${{ ne(null, platform.rid) }}:
${{ ne('', platform.rid) }}:
runtimeArgument: --runtime ${{ platform.rid }}
steps:
# - pwsh: 'Get-ChildItem Env:'
Expand Down

0 comments on commit de523ec

Please sign in to comment.