Closed
Bug 469542
Opened 17 years ago
Closed 17 years ago
wget of 3.0b1 dl url gets you the win32 exe file
Categories
(www.mozilla.org Graveyard :: Thunderbird, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: mkmelin, Unassigned)
Details
Trying to download beta1 with wget using the download page will get you the win32 exe file instead.
wget http://download.mozilla.org/?product=thunderbird-3.0b1&os=linux&lang=en-US
This works fine downloading with the browser, but it seems there's some guessing that's trying to be too smart there...
Comment 1•17 years ago
|
||
You're missing the quotes around the URL, making this a simple case of PEBKAC. ;)
You should be doing this instead:
wget "http://download.mozilla.org/?product=thunderbird-3.0b1&os=linux&lang=en-US"
You can't just wget <bouncer url> because of the ampersands in the URL, which make wget fork to the background after the first &, which means you're really only saying "wget http://download.mozilla.org/?product=thunderbird-3.0b1", which defaults to win32 and en-US because of the lack of other parameters.
Status: NEW → RESOLVED
Closed: 17 years ago
Resolution: --- → INVALID
| Assignee | ||
Updated•13 years ago
|
Product: Websites → www.mozilla.org
Updated•7 years ago
|
Product: www.mozilla.org → www.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•