chore(utils): fix error message

This commit is contained in:
Masaki Yatsu
2025-09-12 23:29:52 +09:00
parent 416b18232f
commit d43dadb91f

View File

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