Skip to content

Instantly share code, notes, and snippets.

@mathieujobin
Created August 19, 2024 03:04
Show Gist options
  • Save mathieujobin/9c586580cf4afc3955ac4916a2246dde to your computer and use it in GitHub Desktop.
Save mathieujobin/9c586580cf4afc3955ac4916a2246dde to your computer and use it in GitHub Desktop.
asdf update all plugins and install latest version
#!/bin/bash
asdf update --head
asdf plugin update --all
for lang in $(asdf plugin list); do asdf install $lang latest; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment