mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-30 17:22:33 +00:00
Merge pull request #153 from nitkon/qemulite
obs-packaging: Skip packaging qemu-lite for non-amd64 arch
This commit is contained in:
commit
f31f50a7ea
@ -65,6 +65,10 @@ eom
|
||||
|
||||
pushd "${script_dir}"
|
||||
for p in "${projects[@]}"; do
|
||||
if [[ "$GO_ARCH" != "amd64" && "$p" == "qemu-lite" ]]; then
|
||||
echo "Skipping packaging qemu-lite as its only for amd64 arch"
|
||||
continue
|
||||
fi
|
||||
pushd "$p" >>/dev/null
|
||||
update_cmd="./update.sh"
|
||||
if [ -n "${PUSH}" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user