mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
It's too dangerous to reuse the existing one, as it breaks the ability to run multiple versions of qgis (i.e. proj < 6 and proj >= 6) on the same machine Fixes #30569
12 lines
279 B
Bash
Executable File
12 lines
279 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
|
|
if [ "$1" = "remove" ] && [ -e /usr/share/qgis/resources/srs6.db ]; then
|
|
rm -f /usr/share/qgis/resources/srs6.db || true
|
|
fi
|
|
|
|
#DEBHELPER#
|