changeset 1147:593392b3186b

cronjob didn't include functions.sh so doesn't have maybe_quiet, and the stderr redirect has to go before the pipe to tee anyway.
author Rob Landley <rob@landley.net>
date Mon, 28 Jun 2010 00:27:09 -0500
parents 73d2f37234d7
children 66c29043b5ca
files sources/more/cronjob.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sources/more/cronjob.sh	Sun Jun 27 21:17:51 2010 -0500
+++ b/sources/more/cronjob.sh	Mon Jun 28 00:27:09 2010 -0500
@@ -88,7 +88,7 @@
 pull_repo qemu
 pushd build/packages/alt-qemu
 ./configure --disable-werror &&
-nice -n 20 make -j $CPUS | tee build/logs/alt-qemu.txt 2>&1 | maybe_quiet &&
+nice -n 20 make -j $CPUS 2>&1 | tee build/logs/alt-qemu.txt &&
 QPATH="$(for i in *-softmmu;do echo -n $(pwd)/$i:; done)"
 popd