From 1e4c772017e4027c255def1bd01b301c2ea6e65c Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Thu, 7 Oct 2021 11:17:33 +0200 Subject: [PATCH] build_library/release_util.sh: improve ssh opts for rsync MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Kai Lüke --- build_library/release_util.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_library/release_util.sh b/build_library/release_util.sh index 9903414d28..47964a8f3d 100644 --- a/build_library/release_util.sh +++ b/build_library/release_util.sh @@ -114,6 +114,7 @@ upload_files() { local sshcmd="ssh -o BatchMode=yes " sshcmd="$sshcmd -o StrictHostKeyChecking=no" sshcmd="$sshcmd -o UserKnownHostsFile=/dev/null" + sshcmd="$sshcmd -o NumberOfPasswordPrompts=0" # ensure the target path exists local sshuserhost="${rsync_upload_path%:*}"