Author: jamessan
Date: 2009-11-22 17:49:23 +0000 (Sun, 22 Nov 2009)
New Revision: 2039

Modified:
   trunk/debian/changelog
   trunk/scripts/who-uploads.sh
Log:
who-uploads: Correct the argument to wget's -O option.  Thanks to Yves-Alexis 
Perez for the patch.  (Closes: #557507)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2009-11-21 23:13:11 UTC (rev 2038)
+++ trunk/debian/changelog      2009-11-22 17:49:23 UTC (rev 2039)
@@ -1,3 +1,10 @@
+devscripts (2.10.58) UNRELEASED; urgency=low
+
+  * who-uploads: Correct the argument to wget's -O option.  Thanks to
+    Yves-Alexis Perez for the patch.  (Closes: #557507)
+
+ -- James Vega <[email protected]>  Sun, 22 Nov 2009 09:14:34 -0500
+
 devscripts (2.10.57) unstable; urgency=low
 
   [ James Vega ]

Modified: trunk/scripts/who-uploads.sh
===================================================================
--- trunk/scripts/who-uploads.sh        2009-11-21 23:13:11 UTC (rev 2038)
+++ trunk/scripts/who-uploads.sh        2009-11-22 17:49:23 UTC (rev 2039)
@@ -201,11 +201,11 @@
 
     # only grab the actual "Accepted" news announcements; hopefully this
     # won't pick up many false positives
-    WGETOPTS="-q -O --timeout=30"
+    WGETOPTS="-q -O - --timeout=30 "
     count=0
-    for news in $(wget $WGETOPTS - $pkgurl |
+    for news in $(wget $WGETOPTS $pkgurl |
                   sed -ne 's%^.*<a 
href="\('$package'/news/[0-9A-Z]*\.html\)">Accepted .*%\1%p'); do
-       HTML_TEXT=$(wget $WGETOPTS - "$baseurl$news")
+       HTML_TEXT=$(wget $WGETOPTS "$baseurl$news")
        GPG_TEXT=$(echo "$HTML_TEXT" |
                   sed -ne 's/^<pre>//; /-----BEGIN PGP SIGNED 
MESSAGE-----/,/-----END PGP SIGNATURE-----/p')
 



-- 
To unsubscribe, send mail to [email protected].

Reply via email to