blob: 5260acf4b537f45992c7d3c1fcb442e63408590b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
## arg 1: the new package version
post_install() {
echo "
n installs node versions to subdirectory n/versions of the directory
specified in environment variable N_PREFIX, which defaults to
/usr/local; the active node/iojs version is installed directly in
N_PREFIX. To change the default to, say, $HOME, prefix later calls to
n with N_PREFIX=$HOME or add export N_PREFIX=$HOME to your shell
initialization file.
See the n README for more information: https://github.com/tj/n
"
}
|