From 73e9aa8e2bcd78e2f29d726e0af21a106fcdf6db Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Thu, 11 Feb 2016 08:12:05 +0100 Subject: bin/find_dpkg_trigger_cycles.sh: fix output format --- bin/find_dpkg_trigger_cycles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/find_dpkg_trigger_cycles.sh') 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 -- cgit v1.2.3-54-g00ecf