mirror of https://github.com/CGAL/cgal
Remove the "v" verbose option to tar, as it obscures the useful info
in the logs for not much gain, I think.
This commit is contained in:
parent
a713dc281b
commit
60a380e2f4
|
|
@ -350,7 +350,7 @@ unzip_cgal()
|
||||||
DECOMPRESSOR="bunzip2"
|
DECOMPRESSOR="bunzip2"
|
||||||
fi
|
fi
|
||||||
log ${ACTUAL_LOGFILE} "untarring CGAL"
|
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
|
if [ ${?} != 0 ]; then
|
||||||
error "Could not untar CGAL"
|
error "Could not untar CGAL"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -256,7 +256,7 @@ unzip_cgal()
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log "${ACTUAL_LOGFILE}" "untarring CGAL"
|
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
|
if [ ${?} != 0 ]; then
|
||||||
error "Could not untar CGAL"
|
error "Could not untar CGAL"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue