Skip to content

Commit 6554045

Browse files
committed
Redirect output of tar for it2ssh payloads to /dev/null. Issue 10774
1 parent 43a6dd3 commit 6554045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ssh-helpers/conductor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ conductor_cmd_write() {
319319
# suppress STDERR for tar as tar prints various warnings if for instance, timestamps are in the future
320320
old_umask=$(umask)
321321
umask 000
322-
printf "%s" ${b64data} | base64_decode | command tar "xpzf" "-" "-C" "$destination"
322+
printf "%s" ${b64data} | base64_decode | command tar "xpzf" "-" "-C" "$destination" > /dev/null 2>&1
323323
local rc=$?
324324
umask "$old_umask"
325325
(exit $rc)

0 commit comments

Comments
 (0)