Skip to content

Commit

Permalink
Release: attempt to fix docker manifest create command
Browse files Browse the repository at this point in the history
This effectively reverts PR 366 and drops the guarding
quotes that were added to these commands in 351.

Signed-off-by: Chris Porter <[email protected]>
  • Loading branch information
portersrc committed Apr 29, 2024
1 parent db56787 commit 3f73904
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions install/pre-install-payload/payload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3f73904

Please sign in to comment.