From cc469d2f475e8dcaa656d8825063ae2982db104d 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 b96965447f..f1ecc8acc0 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%:*}"