blob: 9f7004d9ccf4cfa26f869796f59bc2e894bbfbbe (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
echo ':: Your configuration file must be in $HOME/.ergo.yml for the binary to function.'
echo ':: You can find a template under /usr/share/ergo-git/config-template.yml.'
}
post_upgrade() {
post_install
}
|