Confirmed users, Bureaucrats and Sysops emeriti
2,976
edits
m (fix a syntax error) |
(→Merge: fix up for 45) |
||
| Line 62: | Line 62: | ||
hg -R mozilla-aurora/$loc pull -u -r default | hg -R mozilla-aurora/$loc pull -u -r default | ||
hg -R mozilla-beta/$loc no-op-merge -m"Migrating aurora to beta for Firefox XXX" $PWD/mozilla-aurora/$loc | hg -R mozilla-beta/$loc no-op-merge -m"Migrating aurora to beta for Firefox XXX" $PWD/mozilla-aurora/$loc | ||
hg | hg -R mozilla-beta/$loc push -r default ssh://hg.mozilla.org/releases/l10n/mozilla-beta/$loc | ||
hg | hg -R mozilla-aurora/$loc pull -u -r default mozilla-beta/$loc | ||
# specific for 45: | |||
hg --pwd mozilla-aurora/$loc mv browser/chrome/browser/browser-pocket.properties browser/extensions/pocket/pocket.properties | |||
hg --pwd mozilla-aurora/$loc ci -m'bug 1215694 - Move Pocket file' | |||
hg --pwd mozilla-aurora/$loc push -r default ssh://hg.mozilla.org/releases/l10n/mozilla-aurora/$loc | |||
done | done | ||
</pre> | </pre> | ||
This goes through all locales, does a final pull, does the no-op-merge, and pushes to aurora, and then beta. That way, you minimize the time when commits can create heads. | This goes through all locales, does a final pull, does the no-op-merge, and pushes to aurora, and then beta. That way, you minimize the time when commits can create heads. | ||