From 0c5affe5994ed251d10a3ec42edf1b57a861cc45 Mon Sep 17 00:00:00 2001 From: Mathew Fleisch Date: Mon, 1 Nov 2021 09:14:55 -0700 Subject: [PATCH] Add asdf installation instructions to docs (#383) * Add asdf installation instructions to docs * Update site/content/index.md Co-authored-by: Nate Finch * Clean up asdf installation instructions Co-authored-by: Nate Finch Co-authored-by: Nate Finch --- site/content/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/site/content/index.md b/site/content/index.md index bf9e33be..25bfe14a 100644 --- a/site/content/index.md +++ b/site/content/index.md @@ -57,6 +57,16 @@ See [mage homebrew formula](https://formulae.brew.sh/formula/mage). See [scoop](https://scoop.sh/). +### Using asdf + +The [asdf version manager](https://asdf-vm.com/) is a tool for installing release binaries from Github. With asdf installed, the [asdf plugin for mage](https://github.com/mathew-fleisch/asdf-mage) can be used to install any released version of mage. + +```shell +asdf plugin add mage +asdf install mage latest +asdf global mage latest +``` + ## Example Magefile ```go