Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: archive_build.sh

Issue 3076012: Added output to tar command so it does not cause timeout to kick in. (Closed) Base URL: ssh://gitrw.chromium.org/crosutils.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: archive_build.sh
diff --git a/archive_build.sh b/archive_build.sh
index 7300a52bbb774ab6e54983620e47f50e498c3dd3..871963b06bdd2b1e2e2493ef6272eee274ccd286 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
Christopher Covington 2010/07/28 17:30:51 Would --checkpoint be more suitable? I'm worried -
zel 2010/07/28 18:27:05 There are some pretty large files there. I am afra
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}"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698