Merge pull request #125 from nitkon/master

lib.sh: install_yq fails on ppc64le
This commit is contained in:
Graham Whaley 2018-08-10 15:35:59 +01:00 committed by GitHub
commit 5a500c95f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,11 @@ install_yq() {
"x86_64")
goarch=amd64
;;
"ppc64le")
goarch=ppc64le
;;
"*")
echo "Arch $(arch) not supported"
exit