Skip to content

Commit

Permalink
lib.sh: install_yq fails on ppc64le
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nitkon committed Aug 10, 2018
1 parent 7705d68 commit 63a9b22
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .ci/lib.sh
Expand Up @@ -40,6 +40,11 @@ install_yq() {
"x86_64")
goarch=amd64
;;

"ppc64le")
goarch=ppc64le
;;

"*")
echo "Arch $(arch) not supported"
exit
Expand Down

0 comments on commit 63a9b22

Please sign in to comment.