[SCM] PostGIS branch stable-3.4 updated. 3.4.3-3-g2c6828377
git at osgeo.org
git at osgeo.org
Wed Sep 11 12:29:39 PDT 2024
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.4 has been updated
via 2c6828377bcc8b1fe4f7c06b5c90e4e6ae12489c (commit)
from 0293eb42bdbb8de5a831a23293daff3806e23f25 (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 2c6828377bcc8b1fe4f7c06b5c90e4e6ae12489c
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Sep 11 21:26:10 2024 +0200
Quote pgtopo_export output path
diff --git a/NEWS b/NEWS
index 65762a388..1eb0eb37b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,10 @@
-PostGIS 3.4.4
+PostGIS 3.4.4dev
2024/xx/xx
* Bug Fixes *
+ - Quote-protect output paths of pgtopo_export (Sandro Santilli)
+
PostGIS 3.4.3
diff --git a/topology/loader/pgtopo_export b/topology/loader/pgtopo_export
index f89c90fa5..d8b285464 100755
--- a/topology/loader/pgtopo_export
+++ b/topology/loader/pgtopo_export
@@ -213,7 +213,7 @@ fi # }
cd ${DUMPDIR}/.. || exit 1
echo "Archiving..." >&4
- tar czf ${OFILE} ${DUMPNAME} || exit 1
+ tar czf "${OFILE}" "${DUMPNAME}" || exit 1
)
exit 0
-----------------------------------------------------------------------
Summary of changes:
NEWS | 4 +++-
topology/loader/pgtopo_export | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list