Skip to content

Commit 6f1826b

Browse files
committed
ENH: remove verbosity from doxygen untarring
This significantly increases the log size, and is not very useful.
1 parent b0a8fd3 commit 6f1826b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
if [[ ! -f doxygen-1.8.11.linux.bin.tar.gz ]]; then
88
mkdir tools
99
curl https://data.kitware.com/api/v1/file/5c0aa4b18d777f2179dd0a71/download -o doxygen-1.8.11.linux.bin.tar.gz
10-
tar -xvzf doxygen-1.8.11.linux.bin.tar.gz -C tools
10+
tar -xzf doxygen-1.8.11.linux.bin.tar.gz -C tools
1111
fi
1212
# if doxygen tarball was cached, we need to unzip it
1313
if [[ ! -f ./tools/doxygen-1.8.11/bin/doxygen ]]; then
1414
mkdir tools
15-
tar -xvzf doxygen-1.8.11.linux.bin.tar.gz -C tools
15+
tar -xzf doxygen-1.8.11.linux.bin.tar.gz -C tools
1616
fi
1717
if [[ ! -f ./tools/doxygen-1.8.11/bin/doxygen ]]; then
1818
echo "ERROR: can not find required binary './tools/doxygen-1.8.11/bin/doxygen'"

0 commit comments

Comments
 (0)