blob: 314267f7d659910cda3741468dc0431596c303a4 (
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
|
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#_2-configure-asdf
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#_2-configure-asdf
EOF
}
|