mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-10 22:03:23 +00:00
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:
parent
7705d68f7d
commit
63a9b2291e
@ -40,6 +40,11 @@ install_yq() {
|
|||||||
"x86_64")
|
"x86_64")
|
||||||
goarch=amd64
|
goarch=amd64
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"ppc64le")
|
||||||
|
goarch=ppc64le
|
||||||
|
;;
|
||||||
|
|
||||||
"*")
|
"*")
|
||||||
echo "Arch $(arch) not supported"
|
echo "Arch $(arch) not supported"
|
||||||
exit
|
exit
|
||||||
|
Loading…
Reference in New Issue
Block a user