From 60a380e2f4e15a59759fd3aff3391f2625bd0f25 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Tue, 19 Aug 2008 09:43:46 +0000 Subject: [PATCH] Remove the "v" verbose option to tar, as it obscures the useful info in the logs for not much gain, I think. --- Scripts/developer_scripts/autotest_cgal | 2 +- Scripts/developer_scripts/autotest_cgal_with_cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/developer_scripts/autotest_cgal b/Scripts/developer_scripts/autotest_cgal index e39967d2854..82be31837ff 100755 --- a/Scripts/developer_scripts/autotest_cgal +++ b/Scripts/developer_scripts/autotest_cgal @@ -350,7 +350,7 @@ unzip_cgal() DECOMPRESSOR="bunzip2" fi log ${ACTUAL_LOGFILE} "untarring CGAL" - ${DECOMPRESSOR} -c ${CGAL_ZIPFILE} | ${TAR} xvf - >> ${ACTUAL_LOGFILE} 2>&1 + ${DECOMPRESSOR} -c ${CGAL_ZIPFILE} | ${TAR} xf - >> ${ACTUAL_LOGFILE} 2>&1 if [ ${?} != 0 ]; then error "Could not untar CGAL" fi diff --git a/Scripts/developer_scripts/autotest_cgal_with_cmake b/Scripts/developer_scripts/autotest_cgal_with_cmake index 2a89d8cf4fc..95e493a79ac 100755 --- a/Scripts/developer_scripts/autotest_cgal_with_cmake +++ b/Scripts/developer_scripts/autotest_cgal_with_cmake @@ -256,7 +256,7 @@ unzip_cgal() fi log "${ACTUAL_LOGFILE}" "untarring CGAL" - ${DECOMPRESSOR} -c "${CGAL_ZIPFILE}" | ${TAR} xvf - >> "${ACTUAL_LOGFILE}" 2>&1 + ${DECOMPRESSOR} -c "${CGAL_ZIPFILE}" | ${TAR} xf - >> "${ACTUAL_LOGFILE}" 2>&1 if [ ${?} != 0 ]; then error "Could not untar CGAL" fi