From 7af3de39f48a607bc7fee10d98cbf8e354f23205 Mon Sep 17 00:00:00 2001 From: Jian Qiu Date: Sat, 16 Dec 2023 12:50:42 +0800 Subject: [PATCH] fix: show update command at once (#19014) Co-authored-by: Qiu Jian --- scripts/docker_push.sh | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/scripts/docker_push.sh b/scripts/docker_push.sh index fa67ddc366..ed88423a8f 100755 --- a/scripts/docker_push.sh +++ b/scripts/docker_push.sh @@ -305,13 +305,25 @@ for component in $COMPONENTS; do general_build $component $arch "true" done make_manifest_image $component - show_update_cmd $component $ARCH + #show_update_cmd $component $ARCH ;; *) if [ -e "$DOCKER_DIR/Dockerfile.$component" ]; then general_build $component $ARCH "false" - show_update_cmd $component $ARCH + #show_update_cmd $component $ARCH fi ;; esac done + +echo "" + +for component in $COMPONENTS; do + if [[ $component == *cli ]]; then + continue + fi + if [[ $component == host-image ]]; then + continue + fi + show_update_cmd $component +done