[SCM] PostGIS branch master updated. 3.5.0-412-g583528d6b

git at osgeo.org git at osgeo.org
Tue Jul 1 03:29:05 PDT 2025


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  583528d6b8754ad7871c4330c75c5e43ae54f52f (commit)
      from  dceadf04ff3e1f2b5df2394e4d21ea006a3014c2 (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 583528d6b8754ad7871c4330c75c5e43ae54f52f
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Jul 1 12:28:24 2025 +0200

    Fix current version extraction
    
    It was broken by dea96e48cbc12117593b4c09222d13bdcb63e4d5

diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index ee01e344e..0670ab65d 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -296,7 +296,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do #{
 
   # Check unpackaged->unpackaged upgrades (if target version == current version)
 #  CURRENTVERSION=`grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | paste -sd '.'`
-  CURRENTVERSION=$(grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | tr '\n' '.')
+  CURRENTVERSION=$(grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | tr '\n' '.' | sed 's/\.$//')
 
   if test "${to_version}" != "${CURRENTVERSION}"; then #{
     echo "SKIP: ${EXT} script-based upgrades (${to_version_param} [${to_version}] does not match built version ${CURRENTVERSION})"

-----------------------------------------------------------------------

Summary of changes:
 utils/check_all_upgrades.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list