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

View File

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