mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 18:18:28 +08:00
24 lines
396 B
Bash
Executable File
24 lines
396 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case $1 in
|
|
"install")
|
|
if [ ! -z "$2" ]; then
|
|
echo "try to install from version $2"
|
|
else
|
|
echo "normal install"
|
|
fi
|
|
;;
|
|
"upgrade")
|
|
echo "upgrade from version $2"
|
|
;;
|
|
"abort-upgrade")
|
|
echo "Old: abort upgrade to version $2"
|
|
;;
|
|
*)
|
|
esac
|
|
|
|
# Make sure the script returns 0
|
|
true
|
|
|
|
#DEBHELPER#
|