From 650d0a3fc2aa89a7907b0f5593b51156e3145883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 8 Aug 2025 12:07:15 +0200 Subject: [PATCH] deploy.sh: don't hide ssh prompts --- targets/nixos-wiki.nixos.org/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/nixos-wiki.nixos.org/deploy.sh b/targets/nixos-wiki.nixos.org/deploy.sh index 2ca2839..bebb0a8 100755 --- a/targets/nixos-wiki.nixos.org/deploy.sh +++ b/targets/nixos-wiki.nixos.org/deploy.sh @@ -55,7 +55,7 @@ pre_deployment_checks() { # Check SSH connectivity log "Checking SSH connectivity to ${WIKI_HOST}..." - if ! ssh -o ConnectTimeout=10 -o BatchMode=yes "${SSH_TARGET}" "echo 'SSH connection successful'"; then + if ! ssh -o ConnectTimeout=10 "${SSH_TARGET}" "echo 'SSH connection successful'"; then error "Cannot establish SSH connection to ${WIKI_HOST}" return 1 fi