Skip to content

Commit 650d0a3

Browse files
committed
deploy.sh: don't hide ssh prompts
1 parent 08e152f commit 650d0a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

targets/nixos-wiki.nixos.org/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pre_deployment_checks() {
5555

5656
# Check SSH connectivity
5757
log "Checking SSH connectivity to ${WIKI_HOST}..."
58-
if ! ssh -o ConnectTimeout=10 -o BatchMode=yes "${SSH_TARGET}" "echo 'SSH connection successful'"; then
58+
if ! ssh -o ConnectTimeout=10 "${SSH_TARGET}" "echo 'SSH connection successful'"; then
5959
error "Cannot establish SSH connection to ${WIKI_HOST}"
6060
return 1
6161
fi

0 commit comments

Comments
 (0)