Skip to content

Commit 6786e44

Browse files
authored
fix: add missing awk package to azure flavour (#187)
1 parent 8d27163 commit 6786e44

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

feature/_fish/install.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
if [[ "${FLAVOUR}" =~ (simple|tanzu|gcloud) ]]
44
then
5-
execHandle 'Installing fish' sudo apk add fish perl fzf git
5+
execHandle 'Installing fish' sudo apk add fish fzf git perl
66
elif [[ "${FLAVOUR}" =~ (aws|azure) ]]
77
then
88
prepare
9+
if [[ "${FLAVOUR}" == 'azure' ]]
10+
then
11+
execHandle 'Installing awk' sudo tdnf install -y gawk
12+
fi
913
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
1014
execHandle 'Installing fish' sudo yum install -y fish git
1115
execHandle 'Downloading fzf' curl -f -s -L https://github.com/junegunn/fzf/archive/master.zip -o master.zip

0 commit comments

Comments
 (0)