24 lines
560 B
Bash
Executable File
24 lines
560 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR=$(dirname "$(readlink -f "$0")")
|
|
. "$DIR/../env.sh"
|
|
|
|
|
|
# install docker
|
|
case "$PM" in
|
|
apt)
|
|
#sudo snap install kubectl --classic
|
|
;;
|
|
pacman)
|
|
# TODO
|
|
;;
|
|
esac
|
|
|
|
# completion for fish
|
|
if command -v fish 2>/dev/null ; then
|
|
[ ! -f "$HOME/.config/fish/completions/docker.fish" ] && \
|
|
curl -Lo "$HOME/.config/fish/completions/docker.fish" --create-dirs \
|
|
'https://github.com/docker/cli/raw/master/contrib/completion/fish/docker.fish'
|
|
fish -c "fisher add evanlucas/fish-kubectl-completions"
|
|
fi
|