From e6532bc3ddd446a6668a112aee03647a076fe29c Mon Sep 17 00:00:00 2001 From: Zelidrag Hornung Date: Wed, 28 Jul 2010 11:34:29 -0700 Subject: [PATCH] Added output to tar command so it does not cause timeout to kick in. Review URL: http://codereview.chromium.org/3076012 --- archive_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archive_build.sh b/archive_build.sh index 7300a52bbb..871963b06b 100755 --- a/archive_build.sh +++ b/archive_build.sh @@ -141,7 +141,7 @@ then pushd "${FLAGS_chroot}/build/${FLAGS_board}/usr/local" echo "Archiving autotest build artifacts" - tar cjf "${FLAGS_from}/autotest.tar.bz2" autotest + tar cjfv "${FLAGS_from}/autotest.tar.bz2" autotest popd fi @@ -223,7 +223,7 @@ if [ $FLAGS_archive_debug -eq $FLAGS_TRUE ] then echo "Creating debug archive" pushd "${FLAGS_chroot}/build/${FLAGS_board}/usr/lib" - sudo tar czf "${OUTDIR}/debug.tgz" --exclude debug/usr/local/autotest \ + sudo tar czfv "${OUTDIR}/debug.tgz" --exclude debug/usr/local/autotest \ --exclude debug/tests debug CMD="chown \${SUDO_UID}:\${SUDO_GID} ${OUTDIR}/debug.tgz" sudo sh -c "${CMD}"