summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-11-05 17:41:05 +0100
committerMorgan Deters <mdeters@cs.nyu.edu>2014-11-05 17:41:05 +0100
commitae048633658d99ff970385afe5b529171d89a95f (patch)
tree321d84fbb8d1d0d65bbf9948e708addb09dd79dd /contrib
parentc299eac39aeb0773a343a3e6f37cea5733c5fd44 (diff)
Fix get-bug-attachments script.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/get-bug-attachments4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/get-bug-attachments b/contrib/get-bug-attachments
index 869eee895..80205baff 100755
--- a/contrib/get-bug-attachments
+++ b/contrib/get-bug-attachments
@@ -29,7 +29,7 @@ function webcat {
function webget {
if which wget &>/dev/null; then
tmpfile="$(mktemp get_bug_attach.$$.XXXXXXXX)"
- filename="$(wget -qS -O "$tmpfile" "$1" 2>&1 | grep 'Content-disposition: attachment' | sed 's,.*filename="\(.*\)".*,\1,')"
+ filename="$(wget -qS -O "$tmpfile" "$1" 2>&1 | grep -i 'Content-disposition: attachment' | sed 's,.*filename="\(.*\)".*,\1,')"
ext="$(echo "$filename" | sed 's,.*\.\(.*\),\1,')"
if [ -e "$2.$ext" ] && ! diff -q "$tmpfile" "$2.$ext" &>/dev/null; then
c=a
@@ -46,7 +46,7 @@ function webget {
fi
elif which curl &>/dev/null; then
tmpfile="$(mktemp get_bug_attach.$$.XXXXXXXX)"
- filename="$(curl --head "$1" 2>&1 | grep 'Content-disposition: attachment' | sed 's,.*filename="\(.*\)".*,\1,')"
+ filename="$(curl --head "$1" 2>&1 | grep -i 'Content-disposition: attachment' | sed 's,.*filename="\(.*\)".*,\1,')"
curl "$1" >"$tmpfile" 2>/dev/null
ext="$(echo "$filename" | sed 's,.*\.\(.*\),\1,')"
if [ -e "$2.$ext" ] && ! diff -q "$tmpfile" "$2.$ext" &>/dev/null; then
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback