blob: f24027692e69071f040990fc582a6944362f56ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
cat << _EOF
==> IMPORTANT!!!
==> To prevent overwriting your existing configuration, nanorc
==> was installed to /usr/share/nano-syntax-highlighting/nanorc.sample
==>
==> To install you should add the languages you want to your nano configuration file /etc/nanorc or ~/.nanorc
==> $ echo "include /usr/share/nano-syntax-highlighting/*.nanorc" >> nanorc
_EOF
}
post_upgrade() {
post_install $1
}
|