From 0759f54c9831e376d4699b7843d846d3d609d689 Mon Sep 17 00:00:00 2001 From: Thomas Hopkins Date: Thu, 11 Jan 2018 17:56:06 -0500 Subject: [PATCH] remove wget dependency from macos binary installation --- docs/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index f13d382a8a..d4bbb09bac 100644 --- a/docs/install.md +++ b/docs/install.md @@ -13,7 +13,7 @@ Developers can also easily install [development releases](development/homebrew.m From Github: ```bash -wget -O kops https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-darwin-amd64 +curl -Lo kops https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-darwin-amd64 chmod +x ./kops sudo mv ./kops /usr/local/bin/ ```