mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
[SPARK-944] Language change now restarts Spark. Adds the ability to make groupchat highlighting an option, off by default. And from Michael Will for: [SPARK-637] When buzzed, tabs are now highlighted. Debian build added. git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@10343 b35dd754-fafc-0310-a699-88a17e54d16e
26 lines
361 B
Bash
Executable File
26 lines
361 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
purge)
|
|
;;
|
|
|
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
|
|
|
|
;;
|
|
|
|
*)
|
|
echo "postrm called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
|
|
esac
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
# generated by other debhelper scripts.
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|