blob: d694ded91a73cc6d54e549a55e93b15a4a9e1dd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo "The commands 'wingo' and 'wingo-cmd' have been installed."
echo "Documentation is located in /usr/share/doc/wingo."
echo "You should now create a fresh configuration with 'wingo --write-config'"
echo "For more help, file an issue at https://github.com/BurntSushi/wingo"
}
post_upgrade() {
post_install
}
|