asdf/lib/commands/command-update.bash

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
369 B
Bash
Raw Normal View History

# -*- sh -*-
2017-03-15 07:47:47 -07:00
update_command() {
printf "Upgrading asdf via asdf update is no longer supported. Please use your OS\npackage manager (Homebrew, APT, etc...) to upgrade asdf or download the\nlatest asdf binary manually from the asdf website.\n\nPlease visit https://asdf-vm.com/ or https://github.com/asdf-vm/asdf for more\ndetails.\n"
2017-03-15 07:47:47 -07:00
exit 1
2017-03-15 08:16:25 -07:00
}
update_command "$@"