summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.eu>2012-06-16 16:48:54 +0200
committerDiego Elio Pettenò <flameeyes@flameeyes.eu>2012-06-16 16:48:54 +0200
commit095a6e741c2663a7f14d125f3fb4935e294b273a (patch)
tree0ba73230dc87a0c9dfa7c590995bbe04c282d0a2
parentFix typo. (diff)
downloadflameeyes-tinderbox-095a6e741c2663a7f14d125f3fb4935e294b273a.tar.gz
flameeyes-tinderbox-095a6e741c2663a7f14d125f3fb4935e294b273a.tar.bz2
flameeyes-tinderbox-095a6e741c2663a7f14d125f3fb4935e294b273a.zip
Quiet the log sending.
-rwxr-xr-xbashrc5
1 files changed, 3 insertions, 2 deletions
diff --git a/bashrc b/bashrc
index e9b6a13..0f81918 100755
--- a/bashrc
+++ b/bashrc
@@ -43,8 +43,9 @@ tinderbox_stats() {
if [[ -n "${TINDERBOX_ANALYSIS_ADDR}" ]]; then
tinderbox_send_log() {
- tar cf - "${PORTAGE_LOG_FILE}" | \
- nc6 --send-only --hold-timeout=0 ${TINDERBOX_ANALYSIS_ADDR}
+ tar -P -cf - "${PORTAGE_LOG_FILE}" | \
+ nc6 --send-only --hold-timeout=0 ${TINDERBOX_ANALYSIS_ADDR} \
+ >/dev/null
}
else
tinderbox_send_log() { :; }