Update releasenotes.sh

added $ScriptWorkDir prefix to urls.list
This commit is contained in:
mag37 2024-10-04 08:05:42 +02:00 committed by GitHub
parent 91ff4aaaa7
commit 827bb7e14a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@ releasenotes() {
found=false
while read -r container url; do
[[ $update == $container ]] && printf "%s -> %s\n" "$update" "$url" && found=true
done < urls.list
done < "$ScriptWorkDir"/urls.list
[[ $found == false ]] && printf "%s\n" "$update"
done
}