From 468ac786a78a094da895c6ea663fbdc6b8945134 Mon Sep 17 00:00:00 2001 From: Raine Date: Sun, 22 Oct 2023 17:52:20 +0200 Subject: [PATCH] fix: no need for fancy ssh --- tools/server-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/server-setup.sh b/tools/server-setup.sh index 85c9d8b..0407871 100755 --- a/tools/server-setup.sh +++ b/tools/server-setup.sh @@ -13,7 +13,7 @@ if ! [ "$(id -u)" = "0" ]; then fi echo "testing git connection..." -if ! ssh -Tq git@git.ixvd.net &>/dev/null; then +if ! ssh git@git.ixvd.net &>/dev/null; then echo "can't connect to git, please setup ssh" exit 1 fi