blob: 2be246377f2fde00e2a1fd9d8288a91db93a3293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cat <<EOF
Follow the official instructions [0] to make asdf-vm work, see the sections
titled "YOUR_SHELL & Pacman".
[0] https://asdf-vm.com/guide/getting-started.html#_2-configure-asdf
EOF
}
post_upgrade() {
cat <<EOF
You'll need to update your shell configuration. See https://asdf-vm.com/guide/upgrading-to-v0-16#_3-add-asdf-data-dir-shims-to-the-front-of-your-path.
You may need to reshim the binstubs after upgrading by running 'asdf reshim'.
EOF
}
|