mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
9 lines
154 B
Bash
Executable File
9 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ] && [ -e /usr/share/qgis/resources/srs.db ]; then
|
|
rm -f /usr/share/qgis/resources/srs.db || true
|
|
fi
|
|
|
|
#DEBHELPER#
|