mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 03:57:15 +08:00
21 lines
346 B
Plaintext
21 lines
346 B
Plaintext
# arg 1: the new package version
|
|
post_install() {
|
|
cat << EOF
|
|
Note:
|
|
==> In order to play the game, execute it as follows:
|
|
==> 0ad
|
|
==> You can also run the game editor with this command:
|
|
==> 0ad-editor
|
|
==> Have fun!
|
|
EOF
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $* |