lib.sh: install_yq fails on ppc64le

install_yq() has no arch entry for
ppc64le and hence installing yq
fails on Power systems.

Fixes: #124

Signed-off-by: Nitesh Konkar niteshkonkar@in.ibm.com
This commit is contained in:
Nitesh Konkar 2018-08-10 18:25:10 +05:30
parent 7705d68f7d
commit 63a9b2291e

View File

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