Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion feature/_fish/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading