mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-09 00:35:20 -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
14 lines
313 B
Bash
Executable File
14 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "triggered" ] || [ "$1" = "configure" ]; then
|
|
if [ -w /usr/share/qgis/resources/srs.db ] && [ -x /usr/lib/qgis/crssync ]; then
|
|
/usr/lib/qgis/crssync
|
|
fi
|
|
if [ -w /usr/share/qgis/resources/srs6.db ] && [ -x /usr/lib/qgis/crssync ]; then
|
|
/usr/lib/qgis/crssync
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|