install: also install ripgrep and sbcl

This commit is contained in:
2023-08-12 16:20:31 +01:00
parent d128f3b627
commit 857f6bfbd5

13
install
View File

@@ -96,19 +96,22 @@ fi
git config --global user.email "paul@blacksun.org.uk" git config --global user.email "paul@blacksun.org.uk"
git config --global user.name "Paul Walker" git config --global user.name "Paul Walker"
git clone https://github.com/rbenv/rbenv.git "$HOME/.rbenv" if [ ! -d "$HOME/.rbenv" ] ; then
git clone https://github.com/rbenv/ruby-build.git "$HOME/.rbenv/plugins/ruby-build" git clone https://github.com/rbenv/rbenv.git "$HOME/.rbenv"
git clone https://github.com/rbenv/ruby-build.git "$HOME/.rbenv/plugins/ruby-build"
fi
if [ ! -d "$HOME/.asdf" ] ; then if [ ! -d "$HOME/.asdf" ] ; then
git clone https://github.com/asdf-vm/asdf.git "$HOME/.asdf" git clone https://github.com/asdf-vm/asdf.git "$HOME/.asdf"
fi fi
# Add and install these ones. # Add and install these ones.
for plugin in golang erlang elixir clojure ; do for plugin in golang erlang elixir clojure ripgrep sbcl ; do
asdf plugin add $plugin asdf plugin add $plugin && \
asdf install $plugin latest asdf install $plugin latest && \
asdf global $plugin latest asdf global $plugin latest
done done
# Just add these, for now. # Just add these, for now.
asdf plugin add python asdf plugin add python
asdf plugin add gohugo asdf plugin add gohugo