Closed
Bug 578490
Opened 15 years ago
Closed 15 years ago
triggeraddons.sh has to discover correct firefox3.6 nightly urls for download
Categories
(Testing :: Talos, defect, P2)
Testing
Talos
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: anodelman, Assigned: anodelman)
Details
Currently the urls used by triggeraddons.sh are hard coded:
WIN32="http://stage.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-1.9.2/firefox-3.6.8pre.en-US.win32.zip"
LINUX="http://stage.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-1.9.2/firefox-3.6.8pre.en-US.linux-i686.tar.bz2"
MACOSX="http://stage.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-1.9.2/firefox-3.6.8pre.en-US.mac.dmg"
Each time those urls change (ie, 3.6.7 -> 3.6.8) the script needs to be updated. These urls should be discovered by the script so that no manual intervention is required.
| Assignee | ||
Updated•15 years ago
|
Assignee: nobody → anodelman
Priority: -- → P2
| Assignee | ||
Comment 1•15 years ago
|
||
Fixed and tested with:
BUILDURL="http://stage.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-1.9.2/"
WIN32=$(wget -O - $BUILDURL 2> /dev/null | grep -o '"firefox-3.6[^"]*win32.zip"' | perl -pi -e 's/"//g')
LINUX=$(wget -O - $BUILDURL 2> /dev/null | grep -o '"firefox-3.6[^"]*linux-i686.tar.bz2"' | perl -pi -e 's/"//g')
MACOSX=$(wget -O - $BUILDURL 2> /dev/null | grep -o '"firefox-3.6[^"]*mac.dmg"' | perl -pi -e 's/"//g')
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•