[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.2-22-g716a89d61
git at osgeo.org
git at osgeo.org
Fri Aug 12 22:40:39 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, stable-3.2 has been updated
via 716a89d618e6c2aa7f9cea80de27f6908dcd6c99 (commit)
from f1ad2485e2e54989ae84513e5ad75fe1e8e82b23 (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 716a89d618e6c2aa7f9cea80de27f6908dcd6c99
Author: Sandro Santilli <strk at kbt.io>
Date: Sat Aug 13 01:12:52 2022 +0200
Fix perl syntax logic
diff --git a/regress/run_test.pl b/regress/run_test.pl
index 87fb1e50f..ff1faaa14 100755
--- a/regress/run_test.pl
+++ b/regress/run_test.pl
@@ -1667,9 +1667,9 @@ sub upgrade_spatial_extensions
# Handle raster split if coming from pre-split extension
# and going to splitted raster
if ( $OPT_UPGRADE_FROM &&
- ! $OPT_UPGRADE_FROM =~ /^unpackaged/ &&
+ ( not $OPT_UPGRADE_FROM =~ /^unpackaged/ ) &&
has_split_raster_ext($OPT_UPGRADE_TO) &&
- ! has_split_raster_ext($OPT_UPGRADE_FROM) )
+ not has_split_raster_ext($OPT_UPGRADE_FROM) )
{
# upgrade of postgis must have unpackaged raster, so
# we create it again here
-----------------------------------------------------------------------
Summary of changes:
regress/run_test.pl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list