Unverified Commit 70192cda authored by Justin Scott's avatar Justin Scott Committed by GitHub
Browse files

Merge pull request #3305 from bacongobbler/add-amd-arch-to-get

add amd, ppc64le, and windows OS/architectures
parents f652f453 5cb0eb5e
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -60,9 +60,9 @@ runAsRoot() { ...@@ -60,9 +60,9 @@ runAsRoot() {
# verifySupported checks that the os/arch combination is supported for # verifySupported checks that the os/arch combination is supported for
# binary builds. # binary builds.
verifySupported() { verifySupported() {
local supported="linux-amd64\ndarwin-amd64\nlinux-386" local supported="darwin-386\ndarwin-amd64\nlinux-386\nlinux-amd64\nlinux-arm\nlinux-arm64\nlinux-ppc64le\nwindows-386\nwindows-amd64"
if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then if ! echo "${supported}" | grep -q "${OS}-${ARCH}"; then
echo "No prebuild binary for ${OS}-${ARCH}." echo "No prebuilt binary for ${OS}-${ARCH}."
echo "To build from source, go to https://github.com/kubernetes/helm" echo "To build from source, go to https://github.com/kubernetes/helm"
exit 1 exit 1
fi fi
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment