mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
17 lines
198 B
Text
17 lines
198 B
Text
post_install() {
|
|
echo -e "\033[1mNotice\033[0m"
|
|
echo "Upgrading your installation..."
|
|
# some commands here
|
|
# more commands
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|