[postgis-tickets] [SCM] PostGIS; Spatial objects for PostgreSQL. branch stable-3.0 updated. 160deab353085496ce0529649e9af18ebc2c974f
git at osgeo.org
git at osgeo.org
Wed Nov 6 14:19:33 PST 2019
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; Spatial objects for PostgreSQL.".
The branch, stable-3.0 has been updated
via 160deab353085496ce0529649e9af18ebc2c974f (commit)
from c4aa7e22e5a50ae1a4d5960e9d1736231f7035d0 (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 160deab353085496ce0529649e9af18ebc2c974f
Author: Regina Obe <lr at pcorp.us>
Date: Wed Nov 6 17:19:27 2019 -0500
Hopefully fixes #4571
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index aea310e..80b9231 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -117,6 +117,12 @@ for EXT in ${INSTALLED_EXTENSIONS}; do
# Check unpackaged->extension upgrades
for majmin in `'ls' -d ${CTBDIR}/postgis-* | sed 's/.*postgis-//'`; do
UPGRADE_PATH="unpackaged${majmin}--${to_version_param}"
+ # only consider versions older than ${to_version_param}
+ cmp=`semver_compare "${majmin}" "${to_version_param}"`
+ if test $cmp -ge 0; then
+ echo "SKIP: upgrade $UPGRADE_PATH ($to_version_param is not newer than $majmin)"
+ continue
+ fi
echo "Testing ${EXT} upgrade $UPGRADE_PATH"
export RUNTESTFLAGS="-v --extension --upgrade-path=${UPGRADE_PATH}"
make -C ${REGDIR} check && {
-----------------------------------------------------------------------
Summary of changes:
utils/check_all_upgrades.sh | 6 ++++++
1 file changed, 6 insertions(+)
hooks/post-receive
--
PostGIS; Spatial objects for PostgreSQL.
More information about the postgis-tickets
mailing list