Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tde-packaging/src/commit/8229683d6175cfdda8c2742d37bf265408929f7f/ubuntu/maverick/tdebase/debian/konsole-trinity.preinst
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#! /bin/sh -e
|
|
|
|
case "$1" in
|
|
|
|
upgrade)
|
|
rm -f /etc/trinity/konsolerc
|
|
;;
|
|
|
|
install)
|
|
;;
|
|
|
|
abort-upgrade)
|
|
;;
|
|
|
|
*)
|
|
echo "preinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|