We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d27163 commit 6786e44Copy full SHA for 6786e44
1 file changed
feature/_fish/install.sh
@@ -2,10 +2,14 @@
2
3
if [[ "${FLAVOUR}" =~ (simple|tanzu|gcloud) ]]
4
then
5
- execHandle 'Installing fish' sudo apk add fish perl fzf git
+ execHandle 'Installing fish' sudo apk add fish fzf git perl
6
elif [[ "${FLAVOUR}" =~ (aws|azure) ]]
7
8
prepare
9
+ if [[ "${FLAVOUR}" == 'azure' ]]
10
+ then
11
+ execHandle 'Installing awk' sudo tdnf install -y gawk
12
+ fi
13
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
14
execHandle 'Installing fish' sudo yum install -y fish git
15
execHandle 'Downloading fzf' curl -f -s -L https://github.com/junegunn/fzf/archive/master.zip -o master.zip
0 commit comments