Skip to content

Commit 4b7f183

Browse files
committed
Uninstall xcpretty version 0.4.0 before installing version 0.3.0
1 parent f75169d commit 4b7f183

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

azure_pipelines/msal_submodule_check.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,13 @@ jobs:
4040
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_15.4.app"
4141
displayName: 'Switch to use Xcode 15.4'
4242
- task: CmdLine@2
43-
displayName: Installing xcpretty
43+
displayName: Uninstalling xcpretty v0.4.0
44+
inputs:
45+
script: |
46+
gem uninstall xcpretty -I --version 0.4.0
47+
failOnStderr: false
48+
- task: CmdLine@2
49+
displayName: Installing xcpretty v0.3.0
4450
inputs:
4551
script: |
4652
gem install xcpretty -N -v 0.3.0

azure_pipelines/pr-validation.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ jobs:
2929

3030
steps:
3131
- task: CmdLine@2
32-
displayName: Installing xcpretty
32+
displayName: Uninstalling xcpretty v0.4.0
33+
inputs:
34+
script: |
35+
gem uninstall xcpretty -I --version 0.4.0
36+
failOnStderr: false
37+
- task: CmdLine@2
38+
displayName: Installing xcpretty v0.3.0
3339
inputs:
3440
script: |
3541
gem install xcpretty -N -v 0.3.0

0 commit comments

Comments
 (0)