Merge pull request #7484 from fidencio/topic/CCv0-converge-build-and-payload-scripts-follow-up-9

kata-deploy: We need shim to an array, not a string
This commit is contained in:
Fabiano Fidêncio 2023-07-28 15:54:42 +02:00 committed by GitHub
commit 78522c5802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,9 +43,9 @@ shims_s390x+=(
arch=$(uname -m)
if [[ "${arch}" == "x86_64" ]]; then
shims=${shims_x86_64[@]}
shims=(${shims_x86_64[@]})
elif [[ "${arch}" == "s390x" ]]; then
shims=${shims_s390x[@]}
shims=(${shims_s390x[@]})
else
die "${arch} is a not supported architecture"
fi