From 2650e324df271846b5a994cbf4fa0d5c7486cff2 Mon Sep 17 00:00:00 2001 From: Gianluca Arbezzano Date: Tue, 24 Nov 2020 17:08:08 +0100 Subject: [PATCH] Missed docker transport in release-binaries This is a regression introduced here f8cf83f1217931b2bcd2442d98be37e2c6607a96 Signed-off-by: Gianluca Arbezzano --- script/release-binaries.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/script/release-binaries.sh b/script/release-binaries.sh index 8c0c6ad..c2f904d 100755 --- a/script/release-binaries.sh +++ b/script/release-binaries.sh @@ -4,25 +4,25 @@ source ./current_versions.sh go run cmd/getbinariesfromquay/main.go \ -binary-to-copy /usr/bin/hegel \ - -image ${TINKERBELL_TINK_HEGEL_IMAGE} \ + -image docker://${TINKERBELL_TINK_HEGEL_IMAGE} \ -program hegel go run cmd/getbinariesfromquay/main.go \ -binary-to-copy /usr/bin/boots \ - -image ${TINKERBELL_TINK_BOOTS_IMAGE} \ + -image docker://${TINKERBELL_TINK_BOOTS_IMAGE} \ -program boots go run cmd/getbinariesfromquay/main.go \ -binary-to-copy /usr/bin/tink-worker \ - -image ${TINKERBELL_TINK_WORKER_IMAGE} \ + -image docker://${TINKERBELL_TINK_WORKER_IMAGE} \ -program tink-worker go run cmd/getbinariesfromquay/main.go \ -binary-to-copy /usr/bin/tink-server \ - -image ${TINKERBELL_TINK_SERVER_IMAGE} \ + -image docker://${TINKERBELL_TINK_SERVER_IMAGE} \ -program tink-server go run cmd/getbinariesfromquay/main.go \ -binary-to-copy /usr/bin/tink \ - -image ${TINKERBELL_TINK_CLI_IMAGE} \ + -image docker://${TINKERBELL_TINK_CLI_IMAGE} \ -program tink