From 861ab506eae897806b1cd1e789edd6df5819fbef Mon Sep 17 00:00:00 2001 From: SneakyFish5 <32284796+SneakyFish5@users.noreply.github.com> Date: Tue, 14 Aug 2018 14:48:07 -0500 Subject: [PATCH] Better error message if etcd not installed --- hack/lib/etcd.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/lib/etcd.sh b/hack/lib/etcd.sh index 4d5a623ebb8..6ab726b691c 100755 --- a/hack/lib/etcd.sh +++ b/hack/lib/etcd.sh @@ -24,6 +24,7 @@ kube::etcd::validate() { # validate if in path command -v etcd >/dev/null || { kube::log::usage "etcd must be in your PATH" + kube::log::info "You can use 'hack/install-etcd.sh' to install a copy in third_party/." exit 1 }