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

14 lines
380 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
echo "Installing bicep cli..."
2023-11-28 02:25:03 +01:00
brew tap azure/bicep
brew_smart_install bicep
invoke_tests "Common" "Bicep"