From d43dadb91ff8f24d3e01a56efc007f4b2452de1f Mon Sep 17 00:00:00 2001 From: Masaki Yatsu Date: Fri, 12 Sep 2025 23:29:52 +0900 Subject: [PATCH] chore(utils): fix error message --- utils/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/justfile b/utils/justfile index 89af502..383d058 100644 --- a/utils/justfile +++ b/utils/justfile @@ -22,6 +22,6 @@ check-connection host='' port='': done if ! nc -z -w 1 ${HOST} ${PORT} &>/dev/null; then echo "Connection to ${HOST}:${PORT} failed" - echo "Execute \`kubevpn connect\` if it is in a Kubernetes cluster" + echo "Execute \`telepresence connect\` if it is in a Kubernetes cluster" exit 1 fi