We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 754ef33 commit e2a6facCopy full SHA for e2a6fac
azure-pipelines.yml
@@ -668,7 +668,12 @@ jobs:
668
brew uninstall azure-cli
669
670
echo == Install azure-cli.rb formula ==
671
- brew install --build-from-source $SYSTEM_ARTIFACTSDIRECTORY/homebrew/azure-cli.rb
+ # Need to create a dummy homebrew tap to install the formula
672
+ git config --global user.email "[email protected]"
673
+ git config --global user.name "Your Name"
674
+ brew tap-new dev/azure-cli
675
+ cp $SYSTEM_ARTIFACTSDIRECTORY/homebrew/azure-cli.rb $(brew --repository)/Library/Taps/dev/homebrew-azure-cli/Formula/
676
+ brew install --build-from-source dev/homebrew-azure-cli/azure-cli
677
678
echo == Az Version ==
679
az --version
0 commit comments