diff options
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() { :; } |