File tree 5 files changed +32
-1
lines changed
5 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ .PHONY: install-cli
2
+ install-cli:
3
+ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
4
+ unzip awscliv2.zip
5
+ sudo ./aws/install
6
+ rm -rf aws awscliv2.zip
7
+
8
+ .PHONY: install-vault
9
+ install-vault:
10
+ curl -L -O "https://github.com/99designs/aws-vault/releases/latest/download/aws-vault-linux-amd64"
11
+ sudo install -o root -g root -m 0755 aws-vault-linux-amd64 /usr/local/bin/aws-vault
12
+ rm -f aws-vault-linux-amd64
Original file line number Diff line number Diff line change @@ -23,6 +23,5 @@ omf-install:
23
23
curl -L " https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf" -o " ${HOME} /.local/share/fonts/PowerlineSymbols.otf"
24
24
curl -L " https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf" -o " ${HOME} /.config/fontconfig/conf.d/10-powerline-symbols.conf"
25
25
fc-cache -vf ${HOME} /.local/share/fonts/
26
-
27
26
curl -L " https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install" | fish
28
27
fish -c ' omf install bobthefish'
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ GOURL=https://dl.google.com/go/${GOARCHIVE}
6
6
7
7
ROOT_DIR: =$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST ) ) ) )
8
8
9
+ all : install fish
10
+
9
11
.PHONY : install
10
12
install : go-clean
11
13
curl -O ${GOURL}
Original file line number Diff line number Diff line change
1
+ # vim:filetype=make
2
+
3
+ ROOT_DIR: =$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST ) ) ) )
4
+
5
+ all : install fish
6
+
7
+ # https://github.com/warrensbox/terraform-switcher
8
+ .PHONY : install
9
+ install :
10
+ curl -L https://raw.githubusercontent.com/warrensbox/terraform-switcher/release/install.sh | sudo bash
11
+
12
+ .PHONY : fish
13
+ fish :
14
+ rm -f ${HOME} /.config/fish/functions/mql-terraform.fish
15
+ ln -s ${ROOT_DIR} /fish/functions/mql-terraform.fish ${HOME} /.config/fish/functions/mql-terraform.fish
Original file line number Diff line number Diff line change
1
+ if not contains $HOME /bin $PATH
2
+ set PATH $PATH $HOME /bin
3
+ end
You can’t perform that action at this time.
0 commit comments