blob: b1818a29dd81e32e0d68d8363d4c709789816854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
post_install() {
cat <<-'EOF'
:: Shell configuration
Auto-completion shell scripts are automatically installed for Bash, ZSH and Fish.
To update or get auto-completion scripts for other shells, run the following command:
asdf completion <shell>
Where <shell> can be any of: [bash, elvish, fish, nushell, zsh]
https://asdf-vm.com/guide/getting-started.html#_3-install-asdf
https://asdf-vm.com/guide/upgrading-from-v0-15-to-v0-16.html
EOF
}
post_upgrade() {
cat <<-'EOF'
:: Shell configuration
Remove the following line from your ~/.bashrc file:
. /opt/asdf-vm/asdf.sh
https://asdf-vm.com/guide/upgrading-from-v0-15-to-v0-16.html
EOF
}
post_remove() {
cat <<-'EOF'
:: Revert the configuration from your shell
For more information refer to the official instructions.
https://asdf-vm.com/guide/getting-started.html#_3-install-asdf
https://asdf-vm.com/guide/upgrading-from-v0-15-to-v0-16.html
EOF
}
|