From db4431d40a6fe46e26f22a6a47a08379f8061d42 Mon Sep 17 00:00:00 2001 From: mag37 Date: Fri, 4 Oct 2024 14:48:05 +0200 Subject: [PATCH] Update dockcheck.sh changed missing url-message. --- dockcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockcheck.sh b/dockcheck.sh index 14c5c1f..0d66953 100755 --- a/dockcheck.sh +++ b/dockcheck.sh @@ -155,7 +155,7 @@ releasenotes() { while read -r container url; do [[ $update == $container ]] && printf "%s -> %s\n" "$update" "$url" && found=true done < "$ScriptWorkDir"/urls.list - [[ $found == false ]] && printf "%s -> no url in list\n" "$update" + [[ $found == false ]] && printf "%s -> url missing\n" "$update" done }