From 3f7390476e7cb84e32cb01e9451f03b77ebd088f Mon Sep 17 00:00:00 2001 From: Chris Porter Date: Mon, 29 Apr 2024 11:20:52 -0500 Subject: [PATCH] Release: attempt to fix docker manifest create command This effectively reverts PR 366 and drops the guarding quotes that were added to these commands in 351. Signed-off-by: Chris Porter --- install/pre-install-payload/payload.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install/pre-install-payload/payload.sh b/install/pre-install-payload/payload.sh index a5057e21..b12e2885 100755 --- a/install/pre-install-payload/payload.sh +++ b/install/pre-install-payload/payload.sh @@ -81,15 +81,15 @@ function build_payload() { purge_previous_manifests "${registry}:${tag}" purge_previous_manifests "${registry}:latest" - docker manifest create "${extra_docker_manifest_flags}" \ + docker manifest create ${extra_docker_manifest_flags} \ "${registry}:${tag}" \ - "${registry}:x86_64-${tag}" \ - "${registry}:s390x-${tag}" + --amend "${registry}:x86_64-${tag}" \ + --amend "${registry}:s390x-${tag}" - docker manifest create "${extra_docker_manifest_flags}" \ + docker manifest create ${extra_docker_manifest_flags} \ "${registry}:latest" \ - "${registry}:x86_64-${tag}" \ - "${registry}:s390x-${tag}" + --amend "${registry}:x86_64-${tag}" \ + --amend "${registry}:s390x-${tag}" docker manifest push "${extra_docker_manifest_flags}" "${registry}:${tag}" docker manifest push "${extra_docker_manifest_flags}" "${registry}:latest"