Update dockcheck.sh

changed missing url-message.
This commit is contained in:
mag37 2024-10-04 14:48:05 +02:00 committed by GitHub
parent 9f8c62ed96
commit db4431d40a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}