[Git][debian-gis-team/ogdi-dfsg][master] Redirect STDERR to STDOUT for wget & tar commands.
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Thu Apr 17 10:20:58 BST 2025
Bas Couwenberg pushed to branch master at Debian GIS Project / ogdi-dfsg
Commits:
31c68508 by Bas Couwenberg at 2025-04-17T11:20:51+02:00
Redirect STDERR to STDOUT for wget & tar commands.
- - - - -
1 changed file:
- debian/tests/ogdi-bin
Changes:
=====================================
debian/tests/ogdi-bin
=====================================
@@ -8,7 +8,7 @@ TEMPDIR="$(mktemp -d)"
cd "${TEMPDIR}" || exit 1
-wget "${DATASET_URL}" -O "${DATASET_FILE}"
+wget "${DATASET_URL}" -O "${DATASET_FILE}" 2>&1
RC=$?
if [ "${RC}" -ne 0 ]; then
@@ -18,7 +18,7 @@ if [ "${RC}" -ne 0 ]; then
exit "${RC}"
fi
-tar xavf "${DATASET_FILE}"
+tar xavf "${DATASET_FILE}" 2>&1
RC=$?
if [ "${RC}" -ne 0 ]; then
View it on GitLab: https://salsa.debian.org/debian-gis-team/ogdi-dfsg/-/commit/31c68508a3837ce3d659286216e0408b2959f67a
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/ogdi-dfsg/-/commit/31c68508a3837ce3d659286216e0408b2959f67a
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20250417/afac7f96/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list