Skip to content

Commit

Permalink
Uninstall xcpretty version 0.4.0 before installing version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-arias committed Jan 7, 2025
1 parent f75169d commit 4b7f183
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion azure_pipelines/msal_submodule_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ jobs:
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_15.4.app"
displayName: 'Switch to use Xcode 15.4'
- task: CmdLine@2
displayName: Installing xcpretty
displayName: Uninstalling xcpretty v0.4.0
inputs:
script: |
gem uninstall xcpretty -I --version 0.4.0
failOnStderr: false
- task: CmdLine@2
displayName: Installing xcpretty v0.3.0
inputs:
script: |
gem install xcpretty -N -v 0.3.0
Expand Down
8 changes: 7 additions & 1 deletion azure_pipelines/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ jobs:

steps:
- task: CmdLine@2
displayName: Installing xcpretty
displayName: Uninstalling xcpretty v0.4.0
inputs:
script: |
gem uninstall xcpretty -I --version 0.4.0
failOnStderr: false
- task: CmdLine@2
displayName: Installing xcpretty v0.3.0
inputs:
script: |
gem install xcpretty -N -v 0.3.0
Expand Down

0 comments on commit 4b7f183

Please sign in to comment.