Whoopsie.
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Stanislav Nikitin 2023-01-01 22:45:16 +05:00
parent 1ff7f5ebdc
commit a0c1527615
No known key found for this signature in database
GPG Key ID: 9A63857413C83B4A
1 changed files with 2 additions and 2 deletions

View File

@ -107,13 +107,13 @@ function mirror() {
MULTIARCH=0
# We presumes that amd64 image should always be available.
if ! get_image "amd64" "${image}"; then
if ! get_image "${image}" "amd64"; then
echo "! Image mirroring failed! Cannot obtain amd64 image!"
return 1
fi
get_image "arm64" "${image}"
get_image "${image}" "arm64"
push_multiarch_image "${image}"
cleanup "${image}"
}