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"
|
||||
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue