Files
runner-images-sangeeth/images/macos/scripts/build/install-bicep.sh
T

19 lines
488 B
Bash
Raw Normal View History

2023-11-28 02:25:03 +01:00
#!/bin/bash -e -o pipefail
################################################################################
## File: install-bicep.sh
## Desc: Install bicep cli
################################################################################
source ~/utils/utils.sh
2024-09-03 18:45:06 +02:00
if is_Sequoia; then
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --install
fi
echo "Installing bicep cli..."
2023-11-28 02:25:03 +01:00
brew tap azure/bicep
brew_smart_install bicep
invoke_tests "Common" "Bicep"