[postgis-tickets] [SCM] PostGIS branch stable-2.5 updated. 2.5.4-21-g9e26d71
git at osgeo.org
git at osgeo.org
Tue Jun 30 21:11:47 PDT 2020
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, stable-2.5 has been updated
via 9e26d71d341b8236c485377113ae8647bced91a5 (commit)
from 65e73de493df9d0bcc1ddb8762756ab2e8b069ed (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9e26d71d341b8236c485377113ae8647bced91a5
Author: Regina Obe <lr at pcorp.us>
Date: Wed Jul 1 00:11:34 2020 -0400
Change order of paths prevent berrie from picking up system installed postgresql
diff --git a/ci/berrie64/pg_init_start.sh b/ci/berrie64/pg_init_start.sh
index 0ebe243..1df09ae 100644
--- a/ci/berrie64/pg_init_start.sh
+++ b/ci/berrie64/pg_init_start.sh
@@ -6,7 +6,7 @@ export WORKSPACE=/home/jenkins/workspace
export OS_BUILD=64
export PG_VER=12
export PGPATH=${WORKSPACE}/pg/label/${label}/rel/pg${PG_VER}w${OS_BUILD}
-export PATH=${PATH}:${PGPATH}/bin:${PGPATH}/lib
+export PATH=${PGPATH}/bin:${PGPATH}/lib:${PATH}
export PGPORT=55432
export PGDATA=$PGPATH/data_${PGPORT}
export PGLOG="$PGDATA/pgsql.log"
diff --git a/ci/berrie64/postgis_regress.sh b/ci/berrie64/postgis_regress.sh
index 5bcebfb..719076e 100644
--- a/ci/berrie64/postgis_regress.sh
+++ b/ci/berrie64/postgis_regress.sh
@@ -12,7 +12,7 @@ export OS_BUILD=64
export PG_VER=12
export PGPATH=${WORKSPACE}/pg/label/${label}/rel/pg${PG_VER}w${OS_BUILD}
-export PATH=${PATH}:${PGPATH}/bin:${PGPATH}/lib
+export PATH=${PGPATH}/bin:${PGPATH}/lib:${PATH}
export PGPORT=55432
export PGDATA=$PGPATH/data_${PGPORT}
export PGHOST=localhost
-----------------------------------------------------------------------
Summary of changes:
ci/berrie64/pg_init_start.sh | 2 +-
ci/berrie64/postgis_regress.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list