-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.asdf.sh
executable file
·34 lines (28 loc) · 934 Bytes
/
2.asdf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
set -e
asdf plugin add python || true
asdf plugin add erlang || true
asdf plugin add elixir || true
asdf plugin add neovim || true
asdf plugin add golang || true
asdf plugin add terraform https://github.com/asdf-community/asdf-hashicorp.git || true
asdf plugin add kubectl https://github.com/asdf-community/asdf-kubectl.git || true
asdf plugin add helm https://github.com/Antiarchitect/asdf-helm.git || true
asdf plugin add postgres || true
asdf plugin add nodejs || true
asdf plugin update --all
export KERL_CONFIGURE_OPTIONS="--disable-debug \
--disable-silent-rules \
--enable-dynamic-ssl-lib \
--enable-hipe \
--enable-shared-zlib \
--enable-smp-support \
--enable-threads \
--enable-wx \
--with-ssl=$(brew --prefix [email protected]) \
--without-javac
--enable-darwin-64bit \
--enable-kernel-poll \
--with-dynamic-trace=dtrace"
asdf install erlang
asdf install