diff options
author | Johannes 'josch' Schauer <josch@mister-muffin.de> | 2016-02-11 08:12:05 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-02-11 10:14:03 +0100 |
commit | 73e9aa8e2bcd78e2f29d726e0af21a106fcdf6db (patch) | |
tree | 6f11461bb620dd10969987280489c1c2d08b21e6 | |
parent | 55dc7ba8d136b753d3673fd0641aaff10fd6703e (diff) | |
download | jenkins.debian.net-73e9aa8e2bcd78e2f29d726e0af21a106fcdf6db.tar.xz |
bin/find_dpkg_trigger_cycles.sh: fix output format
-rwxr-xr-x | bin/find_dpkg_trigger_cycles.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find_dpkg_trigger_cycles.sh b/bin/find_dpkg_trigger_cycles.sh index 2858be9e..12c02c71 100755 --- a/bin/find_dpkg_trigger_cycles.sh +++ b/bin/find_dpkg_trigger_cycles.sh @@ -171,7 +171,7 @@ trap finish EXIT # happen in unstable where binarycontrol.debian.net still knows about # a package which was already removed. curl --retry 3 --retry-delay 10 --globoff "http://binarycontrol.debian.net/?q=&path=${DIST}%2F[^%2F]%2B%2Ftriggers%24&format=pkglist" \ - | xargs python3 -c "import apt,sys;c=apt.Cache();[print(c[n].candidate.uri) for n in sys.argv[1:] if n in c]" \ + | xargs python3 -c "import apt,sys;c=apt.Cache();[print(n, c[n].candidate.uri) for n in sys.argv[1:] if n in c]" \ | sort -u \ | while read pkg url; do echo "working on $pkg..." >&2 |