#!/bin/bash -e -o pipefail ################################################################################ ## File: install-bicep.sh ## Desc: Install bicep cli ################################################################################ source ~/utils/utils.sh if is_Sequoia; then sudo rm -rf /Library/Developer/CommandLineTools sudo xcode-select --install fi echo "Installing bicep cli..." brew tap azure/bicep brew_smart_install bicep invoke_tests "Common" "Bicep"