summarylogtreecommitdiffstats
path: root/climate.install
blob: bab6dcd6e62044137d4e36241cb8cba447e471a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## arg 1:  the new package version
post_install() {
    echo "
In order to use certain commands, you may want to install these node/npm packages:

    $ npm install -g http-server is-up-cli is-online-cli

And these python/pip packages:

    $ pip install httpstat
"
}

## arg 1:  the old package version
post_remove() {
  true;
}

# vim:set ts=2 sw=2 et: