From 2ad39b2ec9a72969eea9844a4b5ab1a38e8420c8 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Mon, 14 Nov 2022 13:34:13 -0800 Subject: [PATCH] ci/release/build.sh: Disable StrictHostKeyChecking --- ci/release/build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/release/build.sh b/ci/release/build.sh index bde09257c..1657c364b 100755 --- a/ci/release/build.sh +++ b/ci/release/build.sh @@ -191,4 +191,8 @@ TERM=$TERM \ sh_c rsync --archive --human-readable "$RHOST:src/d2/$ARCHIVE" "$ARCHIVE" } +ssh() { + command ssh -o='StrictHostKeyChecking=accept-new' "$@" +} + main "$@"