* Initial plan * Consolidate mise tools installation and fix GitHub Copilot CLI package Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> * Revert copilot package changes and remove --jobs flag from mise install Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> * fix: permissions * Move GitHub CLI (gh) installation to mise Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> Co-authored-by: Andrejus <git@andrejus.uk>
30 lines
815 B
Bash
Executable File
30 lines
815 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Description:
|
|
# Install Azure CLI.
|
|
#
|
|
|
|
# Skip in Codespaces (project-specific tool)
|
|
[[ "$DOTS_ENV" == "codespaces" ]] && { log_pass "Skipping in Codespaces"; return 0; }
|
|
|
|
if ! command -v az &>/dev/null; then
|
|
case "$DOTS_PKG" in
|
|
apt)
|
|
# https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt
|
|
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
|
|
;;
|
|
pacman)
|
|
sudo pacman -S --noconfirm azure-cli &>/dev/null
|
|
;;
|
|
brew)
|
|
brew install azure-cli
|
|
;;
|
|
*)
|
|
log_warn "Skipping Azure CLI install: no supported package manager found"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
az --version
|