From 3c319003156b9410b2c6189b529ab599d1bb5fa2 Mon Sep 17 00:00:00 2001 From: SangYoun Kwak Date: Wed, 8 May 2024 18:19:53 +0900 Subject: [PATCH] Modify image download script to print image file name To inform the downloaded file name to the caller of script, 'echo' is added to print out the image file name. Change-Id: I342bbe6de49b96f924d9df0b14922a33d85f7133 Signed-off-by: SangYoun Kwak --- scripts/delta-generation-download-source-image.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/delta-generation-download-source-image.sh b/scripts/delta-generation-download-source-image.sh index 44c23dc..8759c36 100755 --- a/scripts/delta-generation-download-source-image.sh +++ b/scripts/delta-generation-download-source-image.sh @@ -15,6 +15,8 @@ download_reference_image_file() { local reference_image_file_name=$(get_reference_image_file_name "${reference_image_url}") local reference_image_file_url="${reference_image_url}/${reference_image_file_name}" curl -sO "${reference_image_file_url}" + + echo "${reference_image_file_name}" } IMAGE_TYPE=$1 -- 2.34.1