From 513705cc4061bd788c65613600d4f8ab21a77484 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Tue, 5 Aug 2025 12:55:43 +0900 Subject: [PATCH] Change validation text for new clone --- src/bin/new_clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/new_clone.sh b/src/bin/new_clone.sh index 65eac03..7884c11 100755 --- a/src/bin/new_clone.sh +++ b/src/bin/new_clone.sh @@ -47,7 +47,7 @@ else SSH_TEST=("${SUDO_COMMAND[@]}" "ssh" "${REMOTE_HOST}"); result=$("${SSH_TEST[@]}" 2>&1); # this can be key or deploy key - validate_string="You've successfully authenticated with the " + validate_string="You've successfully authenticated " if [[ "$result" != *"$validate_string"* ]]; then echo "Could not connect to ${REMOTE_HOST}: ${result}"; error=1;