diff options
author | josch <j.schauer@email.de> | 2015-01-05 11:16:35 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-05 11:17:17 +0100 |
commit | 8e8434ddf3f815d3fca6643bfe484dc579e0b730 (patch) | |
tree | 43f66906a1365c9b9715225033432822b0535d69 | |
parent | 7bedf14ee100a2cc6fbee6ed3bcfe24a88c10da0 (diff) | |
download | jenkins.debian.net-8e8434ddf3f815d3fca6643bfe484dc579e0b730.tar.xz |
bin/find_dpkg_trigger_cycles.sh: disable curl globbing
-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 6532e62f..f3c70206 100755 --- a/bin/find_dpkg_trigger_cycles.sh +++ b/bin/find_dpkg_trigger_cycles.sh @@ -149,7 +149,7 @@ printf "" > $DIRECTORY/activated-file printf "" > $DIRECTORY/activated-explicit # find all binary packages with /triggers$ -curl "http://binarycontrol.debian.net/?q=&path=${DIST}%2F[^%2F]%2B%2Ftriggers%24&format=pkglist" \ +curl --globoff "http://binarycontrol.debian.net/?q=&path=${DIST}%2F[^%2F]%2B%2Ftriggers%24&format=pkglist" \ | xargs apt-get $APT_OPTS --print-uris download \ | sed -ne "s/^'\([^']\+\)'\s\+\([^_]\+\)_.*/\2 \1/p" \ | sort \ |