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