[SCM] PostGIS branch master updated. 3.4.0rc1-1129-ga31726916
git at osgeo.org
git at osgeo.org
Fri May 31 03:59:01 PDT 2024
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 a317269164989865ccc7999454a86599c9da8d94 (commit)
from 459216137e99a9ea07be864638edc55e31ccccb1 (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 a317269164989865ccc7999454a86599c9da8d94
Author: Sandro Santilli <strk at kbt.io>
Date: Fri May 31 12:58:41 2024 +0200
Don't only check 3.0 but any 3.*
diff --git a/utils/check_releases_md5.sh b/utils/check_releases_md5.sh
index 47edf07e2..df0b7fea6 100755
--- a/utils/check_releases_md5.sh
+++ b/utils/check_releases_md5.sh
@@ -5,7 +5,6 @@ API=https://git.osgeo.org/gitea/api/v1
DOWNLOAD_BASE=https://download.osgeo.org/postgis/source
MD5_BASE=https://postgis.net/stuff
OLDEST_MAJ=3
-OLDEST_MIN=0
mkdir -p ${WORKDIR}
cd ${WORKDIR}
@@ -16,7 +15,7 @@ else
echo "Fetching list of supported releases"
curl -s ${API}/repos/postgis/postgis/tags > tags.json
jq -r .[].name tags.json |
- grep "^${OLDEST_MAJ}\.${OLDEST_MIN}" |
+ grep "^${OLDEST_MAJ}\." |
grep -v [a-z] > checked_releases.txt
fi
-----------------------------------------------------------------------
Summary of changes:
utils/check_releases_md5.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list