diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2012-06-16 16:48:54 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2012-06-16 16:48:54 +0200 |
commit | 095a6e741c2663a7f14d125f3fb4935e294b273a (patch) | |
tree | 0ba73230dc87a0c9dfa7c590995bbe04c282d0a2 /bashrc | |
parent | Fix typo. (diff) | |
download | flameeyes-tinderbox-095a6e741c2663a7f14d125f3fb4935e294b273a.tar.gz flameeyes-tinderbox-095a6e741c2663a7f14d125f3fb4935e294b273a.tar.bz2 flameeyes-tinderbox-095a6e741c2663a7f14d125f3fb4935e294b273a.zip |
Quiet the log sending.
Diffstat (limited to 'bashrc')
-rwxr-xr-x | bashrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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() { :; } |