Skip to content

Commit

Permalink
Fix AzureCLI inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
slozier committed Jan 10, 2024
1 parent 674d379 commit 19dace7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Build/steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ steps:
- task: AzureCLI@2
displayName: Set Mono Version
inputs:
scriptType: inlineScript
scriptType: bash
scriptLocation: inlineScript
inlineScript: |
# use Mono 6.4.0 version
SYMLINK=6.4.0
Expand All @@ -55,7 +56,8 @@ steps:
- task: AzureCLI@2
displayName: Version Information
inputs:
scriptType: inlineScript
scriptType: bash
scriptLocation: inlineScript
inlineScript: |
# Testing and packaging tools
sudo apt-get -yq install mono-vbnc dos2unix fakeroot
Expand All @@ -71,7 +73,8 @@ steps:
- task: AzureCLI@2
displayName: Version Information
inputs:
scriptType: inlineScript
scriptType: bash
scriptLocation: inlineScript
inlineScript: |
# Dump some info about the tools
mono --version
Expand Down

0 comments on commit 19dace7

Please sign in to comment.