From ac87928923bc84bab6df4d3b5703da87f957ec8c Mon Sep 17 00:00:00 2001 From: Daniel Sangorrin Date: Mon, 4 Oct 2021 10:58:26 +0900 Subject: [PATCH] assets: update_mirror.sh: fix aptly mirror update message The aptly mirror update message was not showing the distribution name (e.g. buster, bullseye, etc) Signed-off-by: Daniel Sangorrin --- assets/update_mirror.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/update_mirror.sh b/assets/update_mirror.sh index 53db019..10946ce 100755 --- a/assets/update_mirror.sh +++ b/assets/update_mirror.sh @@ -103,7 +103,7 @@ set -e # Update the all repository mirrors for dist in ${DISTS[@]}; do - echo "Updating ${REPO} repository mirror.." + echo "Updating ${REPO}-${dist} repository mirror.." aptly mirror update ${REPO}-${dist} done