Skip to content

Commit

Permalink
Fix wrong step condition
Browse files Browse the repository at this point in the history
  • Loading branch information
maddie480 authored Dec 8, 2024
1 parent 6ddfacd commit 387eb4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ steps:
condition: and(succeeded(), ne(variables.loveURL, ''))
displayName: 'Dist: Grab cached LÖVE'
inputs:
key: 'love-unpacked-11-5 | "$(Agent.OS)"'
key: 'love-unpacked | "$(Agent.OS)"'
path: love-raw
cacheHitVar: loveCached
- task: PowerShell@2
Expand All @@ -211,7 +211,7 @@ steps:
Expand-Archive -Path $env:LOVEZIP -DestinationPath love-raw
# If we need to pull lua51.dll from another LÖVE package, download, unzip and grab lua51.dll.
- task: PowerShell@2
condition: and(succeeded(), ne(variables.loveLuaZIP, ''), ne(variables.loveCached, 'true'))
condition: and(succeeded(), ne(variables.loveLuaURL, ''), ne(variables.loveCached, 'true'))
displayName: 'Dist: Replace lua51.dll'
continueOnError: true
inputs:
Expand Down

0 comments on commit 387eb4b

Please sign in to comment.