Revision dbef766a88ace92334d9987dc23691578664255b authored by Denis Rouzaud on 12 November 2015, 12:56:56 UTC, committed by Denis Rouzaud on 13 November 2015, 08:57:57 UTC
currently, changing the entr doesn't do anything in the attribute table since no signal is emitted

should be backported to 2.12
1 parent 6335de9
Raw File
qgis-plugin-grass.postrm
#!/bin/sh

set -e

if [ "$1" = "remove" ]; then
	for i in /usr/bin/qgis /usr/bin/qbrowser; do
		dpkg-divert --package qgis-plugin-grass --remove --rename --divert $i.bin $i
	done
fi

#DEBHELPER#

exit 0
back to top