canmove, Confirmed users
6,441
edits
| Line 267: | Line 267: | ||
WARN: non-binary files found in diff | WARN: non-binary files found in diff | ||
WARN: check_updates returned warning for Linux_x86_64-gcc3 downloads/firefox-35.0b8.tar.bz2 vs. downloads/firefox-35.0.tar.bz2: 2 | WARN: check_updates returned warning for Linux_x86_64-gcc3 downloads/firefox-35.0b8.tar.bz2 vs. downloads/firefox-35.0.tar.bz2: 2 | ||
</pre> | |||
== Adjust whatsnew page == | |||
Per {{bug|1120498}}, we want a whatsnew page for 33.0.2 and earlier, no whatsnew for 34.0 and 34.0.5. No snippets have whatsnew in them yet, so we need to add it for all of the releases that need it (and do nothing for 34.0 and 34.0.5): | |||
<pre> | |||
# ffxbld@aus3-staging | |||
# test snippets | |||
cd /opt/aus2/snippets/staging | |||
rsync -a --exclude=betatest --exclude=35.0 --exclude=34.0 --exclude=34.0.5 /opt/aus2/snippets/pushed/Firefox-35.0-build3-test/ Firefox-35.0-build3-test-whatsnew/ | |||
for i in `find Firefox-35.0-build3-test-whatsnew/ -type f`; do locale=`echo $i | cut -d/ -f6` && echo "actions=showURL" >> $i && echo "openURL=https://www.mozilla.org/$locale/firefox/35.0/whatsnew/?oldversion=%OLD_VERSION%" >> $i; done | |||
# live snippets | |||
# back them up first | |||
rsync -a Firefox-35.0-build3/ /opt/aus2/snippets/backup/Firefox-35.0-build3.bak/ | |||
for i in `find Firefox-35.0-build3/ -type f -not -wholename "*/35.0/*" -not -wholename "*/34.0/*" -not -wholename "*/34.0.5/*"`; do locale=`echo $i | cut -d/ -f6` && echo "actions=showURL" >> $i && echo "openURL=https://www.mozilla.org/$locale/firefox/35.0/whatsnew/?oldversion=%OLD_VERSION%" >> $i; done | |||
</pre> | </pre> | ||