Skip to content

Commit

Permalink
Fix indent in yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
coenm committed Sep 2, 2024
1 parent 3658a5f commit 5c4a825
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .azuredevops/Pipelines/Templates/create-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ steps:
- task: DeleteFiles@1
displayName: Remove unneeded files
inputs:
contents: |
_output/**/*.xlm
_output/**/*.config
_output/**/*.pdb
_output/Win/Assemblies/runtimes/!(win*)/**/*.*
_output/Win/Assemblies/!(runtimes)/*.resources.dll
contents: |
_output/**/*.xlm
_output/**/*.config
_output/**/*.pdb
_output/Win/Assemblies/runtimes/!(win*)/**/*.*
_output/Win/Assemblies/!(runtimes)/*.resources.dll
- pwsh: |
Get-ChildItem -Path "_output\Win\Assemblies" -Recurse | Where-Object { $_.PSIsContainer -and @(Get-ChildItem -LiteralPath $_.FullName -Recurse -Force).Count -eq 0 } | Remove-Item -Recurse
Expand Down

0 comments on commit 5c4a825

Please sign in to comment.