deploy.sh: don't hide ssh prompts

This commit is contained in:
Jörg Thalheim
2025-08-08 12:07:15 +02:00
parent 08e152f13d
commit 650d0a3fc2

View File

@@ -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