From f5ee3d596aa8c6ad850ee12fe7b445c93b10f7ab Mon Sep 17 00:00:00 2001 From: Thomas Minor Date: Tue, 23 Sep 2025 13:19:03 +0200 Subject: [PATCH] fix: add missing awk package to azure flavour --- feature/_fish/install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/feature/_fish/install.sh b/feature/_fish/install.sh index fc45e89..ac0b01d 100644 --- a/feature/_fish/install.sh +++ b/feature/_fish/install.sh @@ -2,10 +2,14 @@ if [[ "${FLAVOUR}" =~ (simple|tanzu|gcloud) ]] then - execHandle 'Installing fish' sudo apk add fish perl fzf git + execHandle 'Installing fish' sudo apk add fish fzf git perl elif [[ "${FLAVOUR}" =~ (aws|azure) ]] then prepare + if [[ "${FLAVOUR}" == 'azure' ]] + then + execHandle 'Installing awk' sudo tdnf install -y gawk + fi execHandle 'Downloading fish repo' sudo curl -f -s -L https://download.opensuse.org/repositories/shells:fish:release:3/CentOS_7/shells:fish:release:3.repo -o /etc/yum.repos.d/shells:fish:release:3.repo execHandle 'Installing fish' sudo yum install -y fish git execHandle 'Downloading fzf' curl -f -s -L https://github.com/junegunn/fzf/archive/master.zip -o master.zip