Last active
July 26, 2024 23:42
-
-
Save kapolos/905f5af4db3a3491a36fff28224d02d0 to your computer and use it in GitHub Desktop.
Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.14.0 | |
echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc | |
echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc | |
source ~/.bashrc | |
asdf plugin add bun | |
asdf install bun latest | |
asdf global bun latest | |
asdf plugin add just | |
asdf install just latest | |
asdf global just latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment