diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-07-08 14:36:53 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-08 16:38:50 +0200 |
commit | eafee713a70122890f6b7ae58f0312023cb1ca80 (patch) | |
tree | f81ecee28a15a1b4a2fda300285622f7085c7235 /bin | |
parent | 1129552b2e233fe08b83b3a950546be4e6a1ace6 (diff) | |
download | jenkins.debian.net-eafee713a70122890f6b7ae58f0312023cb1ca80.tar.xz |
qa.d.o: orphaned_without_o_bug: turn the package list in a list of links
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/udd-query.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/udd-query.sh b/bin/udd-query.sh index 0240b447..3195043f 100755 --- a/bin/udd-query.sh +++ b/bin/udd-query.sh @@ -90,8 +90,9 @@ orphaned_without_o_bug() { echo "Warning: The following packages are maintained by packages@qa.debian.org" echo "but are missing a wnpp bug according to https://qa.debian.org/data/bts/wnpp_rm" echo - # TODO: turn source package names into links - echo $RES + for i in $RES ; do + echo "https://tracker.debian.org/$i" + done fi rm -f "$UDD" "$WNPPRM" "$SORTED_UDD" |