From: SangYoun Kwak Date: Wed, 8 May 2024 09:19:53 +0000 (+0900) Subject: Modify image download script to print image file name X-Git-Tag: accepted/tizen/unified/20240603.160929^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c319003156b9410b2c6189b529ab599d1bb5fa2;p=platform%2Fcore%2Fsystem%2Fplugin%2Fupgrade-tools-generic.git 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 --- 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