[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-686-g62ea563db
git at osgeo.org
git at osgeo.org
Tue Oct 17 05:13:35 PDT 2023
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 62ea563db10f0ade4c6321ee4e261754d6446cb5 (commit)
from 469361aaaa0d17ee27ea463de4ce85b7a881276f (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 62ea563db10f0ade4c6321ee4e261754d6446cb5
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Oct 17 14:12:26 2023 +0200
Do not take 'upackaged' as an extension version
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index 5a5601e54..f68b0c114 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -196,6 +196,10 @@ for EXT in ${INSTALLED_EXTENSIONS}; do
files=`'ls' ${EXT}--* | grep -v -- '--.*--' | sed "s/^${EXT}--\(.*\)\.sql/\1/"`
for fname in $files; do
from_version="$fname"
+ if test "$from_version" = "unpackaged"; then
+ # We deal with unpackaged tests separately
+ continue;
+ fi
UPGRADE_PATH="${from_version}--${to_version_param}"
test_label="${EXT} extension upgrade ${UPGRADE_PATH}"
if expr $to_version_param : ':auto' >/dev/null; then
-----------------------------------------------------------------------
Summary of changes:
utils/check_all_upgrades.sh | 4 ++++
1 file changed, 4 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list