mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-23 15:34:28 +01:00
snapcraft: Fix conditional check for ppc64le
Conditional check for arch was failing silently and hence had no effect. Fixes: #473 Signed-off-by: Nitesh Konkar niteshkonkar@in.ibm.com
This commit is contained in:
@@ -48,7 +48,7 @@ parts:
|
||||
|
||||
# build and install
|
||||
arch=$(uname -m)
|
||||
if [ ${arch} == "ppc64le" ]; then
|
||||
if [ ${arch} = "ppc64le" ]; then
|
||||
arch="ppc64"
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user