From 63a9b2291e32c3d55e435ce1e7660b3c8db14ef6 Mon Sep 17 00:00:00 2001 From: Nitesh Konkar Date: Fri, 10 Aug 2018 18:25:10 +0530 Subject: [PATCH] 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 --- .ci/lib.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.ci/lib.sh b/.ci/lib.sh index 23bd5a68ed..8ca7d5f186 100644 --- a/.ci/lib.sh +++ b/.ci/lib.sh @@ -40,6 +40,11 @@ install_yq() { "x86_64") goarch=amd64 ;; + + "ppc64le") + goarch=ppc64le + ;; + "*") echo "Arch $(arch) not supported" exit