From edc3510f41fd3fbe03a3a6097874e950eb08c00d Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 2 Nov 2020 13:25:41 -0600 Subject: [PATCH] Add Update asdf Plugins With Latest Package Versions as a workflow til --- README.md | 3 ++- ...asdf-plugins-with-latest-package-versions.md | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 workflow/update-asdf-plugins-with-latest-package-versions.md diff --git a/README.md b/README.md index e840896..d482712 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ and pairing with smart people at Hashrocket. For a steady stream of TILs, [sign up for my newsletter](https://tinyletter.com/jbranchaud). -_955 TILs and counting..._ +_956 TILs and counting..._ --- @@ -1104,6 +1104,7 @@ _955 TILs and counting..._ - [Rotate An Image To Be Oriented Upright](workflow/rotate-an-image-to-be-oriented-upright.md) - [Set Recurring Reminders In Slack](workflow/set-recurring-reminders-in-slack.md) - [Toggle Between Stories In Storybook](workflow/toggle-between-stories-in-storybook.md) +- [Update asdf Plugins With Latest Package Versions](workflow/update-asdf-plugins-with-latest-package-versions.md) ## Usage diff --git a/workflow/update-asdf-plugins-with-latest-package-versions.md b/workflow/update-asdf-plugins-with-latest-package-versions.md new file mode 100644 index 0000000..e7b130c --- /dev/null +++ b/workflow/update-asdf-plugins-with-latest-package-versions.md @@ -0,0 +1,17 @@ +# Update asdf Plugins With Latest Package Versions + +If you've been using [`asdf`](https://github.com/asdf-vm/asdf) for a while, +then the various plugins you are using may be a bit out of date. That means +that they won't have information about the latest versions of their respective +technologies. + +You can update all of them at once with the `--all` flag: + +```bash +$ asdf plugin update --all +``` + +This will grab all the latest package version information for each `asdf` +plugin you have installed. + +See `asdf help` for more details.