Skip to content

Commit ca5bc25

Browse files
authored
Merge pull request #102 from jmckenna/demo-pg3.4
handle PostGIS 3.4 in demo
2 parents 84e7574 + 99d7d80 commit ca5bc25

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: "github-actions" # See documentation for possible values
6+
directory: "/" # Location of package manifests
7+
schedule:
8+
interval: "weekly"

demo/install.sh.in

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ PGUSER=postgres
1111
SHP2PGSQL=@SHP2PGSQL@
1212
DB=tinyows_demo
1313

14-
if [ -d /usr/local/pgsql/share/contrib/postgis-3.3 ]; then
15-
PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.3
14+
if [ -d /usr/local/pgsql/share/contrib/postgis-3.4 ]; then
15+
PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.4
16+
elif [ -d /usr/local/pgsql/share/contrib/postgis-3.3 ]; then
17+
PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.3
1618
elif [ -d /usr/local/pgsql/share/contrib/postgis-3.2 ]; then
1719
PGSHARE=/usr/local/pgsql/share/contrib/postgis-3.2
1820
elif [ -d /usr/local/pgsql/share/contrib/postgis-3.1 ]; then

0 commit comments

Comments
 (0)