blob: 163a602efd95cd793f14eaecc8a7ad744c4c3021 (
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
|
post_install() {
cat <<EOF
==> To register this plugin with Nushell, run the following from inside nu:
plugin add /usr/bin/nu_plugin_hcl
plugin use hcl
EOF
}
post_upgrade() {
cat <<EOF
==> nu_plugin_hcl was updated. Re-register it from inside nu to refresh signatures:
plugin add /usr/bin/nu_plugin_hcl
EOF
}
post_remove() {
cat <<EOF
==> If you registered nu_plugin_hcl with Nushell, you may want to remove it:
plugin rm hcl
EOF
}
|