mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
14 lines
203 B
Bash
Executable File
14 lines
203 B
Bash
Executable File
#!/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
|