[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-114-g4194f0f24
git at osgeo.org
git at osgeo.org
Sat Sep 17 14:05:24 PDT 2022
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 4194f0f24df7e1bc7e8655b561f9fdf3646e8a4a (commit)
via 14807d5ca91e9983af3d51a02138bf7c17a8b51c (commit)
from 1c0838e7899de623ef842fd2dd5b2cb29b84076b (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 4194f0f24df7e1bc7e8655b561f9fdf3646e8a4a
Author: Sandro Santilli <strk at kbt.io>
Date: Sat Sep 17 23:05:15 2022 +0200
Quote and hush
diff --git a/utils/check_all_upgrades.sh b/utils/check_all_upgrades.sh
index 92012a988..3c635947b 100755
--- a/utils/check_all_upgrades.sh
+++ b/utils/check_all_upgrades.sh
@@ -12,7 +12,7 @@ BUILDDIR=$PWD # TODO: allow override ?
cd $(dirname $0)/..
SRCDIR=$PWD # TODO: allow override ?
-cd -
+cd - > /dev/null
if test "$1" = "-s"; then
@@ -226,7 +226,7 @@ for EXT in ${INSTALLED_EXTENSIONS}; do
# Check unpackaged->unpackaged upgrades
CURRENTVERSION=`grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | paste -sd '.'`
- if test ${to_version} = "${CURRENTVERSION}"; then
+ if test "${to_version}" = "${CURRENTVERSION}"; then
for majmin in `'ls' -d ${CTBDIR}/postgis-* | sed 's/.*postgis-//'`
do #{
UPGRADE_PATH="unpackaged${majmin}--:auto"
commit 14807d5ca91e9983af3d51a02138bf7c17a8b51c
Author: Sandro Santilli <strk at kbt.io>
Date: Sat Sep 17 23:05:06 2022 +0200
Fix :auto handling (chop)
diff --git a/regress/run_test.pl b/regress/run_test.pl
index 11d144952..ffb83042b 100755
--- a/regress/run_test.pl
+++ b/regress/run_test.pl
@@ -243,6 +243,7 @@ psql -XtAc "
WHERE name = 'postgis'
" template1
`;
+chop $defextver;
my $dbcount = @dblist;
-----------------------------------------------------------------------
Summary of changes:
regress/run_test.pl | 1 +
utils/check_all_upgrades.sh | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list