2021-06-24 03:13:00 -05:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
################################################################################
|
2023-11-22 21:49:23 +01:00
|
|
|
## File: install-bicep.sh
|
|
|
|
|
## Desc: Install bicep cli
|
2021-06-24 03:13:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
|
|
|
|
|
|
# Install Bicep CLI
|
2023-11-29 20:25:29 +01:00
|
|
|
bicep_binary_path=$(download_with_retry "https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64")
|
2021-06-24 03:13:00 -05:00
|
|
|
# Mark it as executable
|
2023-11-29 20:25:29 +01:00
|
|
|
install "$bicep_binary_path" /usr/local/bin/bicep
|
2021-06-24 03:13:00 -05:00
|
|
|
|
2023-11-22 21:49:23 +01:00
|
|
|
invoke_tests "Tools" "Bicep"
|