[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-128-g6b5aaea
git at osgeo.org
git at osgeo.org
Mon Nov 2 03:14:06 PST 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, master has been updated
via 6b5aaea8dba9708b18f164312fad167fe67c6492 (commit)
from a7ff53ff535eae8579a374a11a785ed053acd3c7 (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 6b5aaea8dba9708b18f164312fad167fe67c6492
Author: Sandro Santilli <strk at kbt.io>
Date: Mon Nov 2 12:13:05 2020 +0100
Have berrie bots prepend PG path to PATH
Should fix mixing different versions between build and test
diff --git a/ci/berrie/postgis_regress.sh b/ci/berrie/postgis_regress.sh
index 92f3ae4..6cd7436 100644
--- a/ci/berrie/postgis_regress.sh
+++ b/ci/berrie/postgis_regress.sh
@@ -12,7 +12,7 @@ export OS_BUILD=32
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
diff --git a/ci/berrie64/postgis_regress.sh b/ci/berrie64/postgis_regress.sh
index a0880f7..ed9dc36 100644
--- a/ci/berrie64/postgis_regress.sh
+++ b/ci/berrie64/postgis_regress.sh
@@ -12,7 +12,7 @@ export OS_BUILD=64
export PG_VER=13
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/berrie/postgis_regress.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