41 git clone --depth 1 'https://github.com/asdf-vm/asdf' .asdf |
41 git clone --depth 1 'https://github.com/asdf-vm/asdf' .asdf |
42 else |
42 else |
43 pull .asdf |
43 pull .asdf |
44 fi |
44 fi |
45 |
45 |
46 for LANG in ruby nodejs erlang elixir; do |
46 for PLUGIN in ruby nodejs erlang elixir; do |
47 if ! [ -d .asdf/plugins/$LANG ]; then |
47 if ! [ -d .asdf/plugins/$PLUGIN ]; then |
48 git clone --depth 1 "https://github.com/asdf-vm/asdf-$LANG" .asdf/plugins/$LANG |
48 git clone --depth 1 "https://github.com/asdf-vm/asdf-$PLUGIN" .asdf/plugins/$LANG |
49 else |
49 else |
50 pull .asdf/plugins/$LANG |
50 pull .asdf/plugins/$PLUGIN |
51 fi |
51 fi |
52 done |
52 done |
53 |
53 |
54 bin/setup-man || true |
54 bin/setup-man || true |
55 fi |
55 fi |