PKGBUILDs/core/plugapps-scripts/plugapps-scripts.install

20 lines
282 B
Plaintext
Raw Normal View History

2011-01-01 06:29:21 +00:00
post_install() {
echo -e "\033[1mNotice\033[0m"
echo "Upgrading your installation..."
# some commands here
# more commands
}
post_upgrade() {
post_install
}
post_remove() {
2011-01-17 08:07:38 +00:00
#functions break if there isn't something in them
echo "nothing here" > /dev/null
2011-01-01 06:29:21 +00:00
}
op=$1
shift
$op $*