[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.6-21-g74dd55080
git at osgeo.org
git at osgeo.org
Fri Aug 12 22:42:11 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.0 has been updated
via 74dd550807314cde7dea38c6f59318f59931a939 (commit)
from e416996d5f415859fab4483b5e2391d4d4371f60 (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 74dd550807314cde7dea38c6f59318f59931a939
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