[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0beta1-11-g7d425cd07

git at osgeo.org git at osgeo.org
Sat Jul 15 12:27:56 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  7d425cd07457886db65c27c1139c7a545b7c5b99 (commit)
      from  69754edb0785956854c7114b095b7b08356b7acc (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 7d425cd07457886db65c27c1139c7a545b7c5b99
Author: Sandro Santilli <strk at kbt.io>
Date:   Sat Jul 15 21:27:31 2023 +0200

    Have generator exit with failure code on failure
    
    References #5446

diff --git a/doc/html/images/generator.c b/doc/html/images/generator.c
index d1a0ece2a..1ddbe0e69 100644
--- a/doc/html/images/generator.c
+++ b/doc/html/images/generator.c
@@ -68,6 +68,7 @@ checked_system(const char* cmd)
   int ret = system(cmd);
 	if ( WEXITSTATUS(ret) != 0 ) {
 		fprintf(stderr, "Failure return code (%d) from command: %s", WEXITSTATUS(ret), cmd);
+		exit(EXIT_FAILURE);
 	}
 }
 

-----------------------------------------------------------------------

Summary of changes:
 doc/html/images/generator.c | 1 +
 1 file changed, 1 insertion(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list