diff -r d14085eee2b2 -r 4b419fce88dc MozillaFirefox/create-tar.sh --- a/MozillaFirefox/create-tar.sh Sat Jan 20 21:27:34 2018 +0100 +++ b/MozillaFirefox/create-tar.sh Fri Feb 09 13:28:07 2018 +0100 @@ -7,8 +7,8 @@ CHANNEL="beta" BRANCH="releases/mozilla-$CHANNEL" -RELEASE_TAG="FIREFOX_58_0b15_RELEASE" -VERSION="57.99" +RELEASE_TAG="73ef186ad51ac2c4fc27b1f149fcc94355fe7dc6" +VERSION="58.99" # mozilla if [ -d mozilla ]; then @@ -54,7 +54,7 @@ # l10n echo "fetching locales..." test ! -d l10n && mkdir l10n -for locale in $(awk '{ print $1; }' mozilla/browser/locales/shipped-locales); do +for locale in $(awk '{ print $1; }' l10n_changesets.txt); do case $locale in ja-JP-mac|en-US) ;; @@ -62,7 +62,7 @@ echo "reading changeset information for $locale" _changeset=$(grep ^$locale l10n_changesets.txt | awk '{ print $2; }') echo "fetching $locale changeset $_changeset ..." - hg clone http://hg.mozilla.org/releases/l10n/mozilla-$CHANNEL/$locale l10n/$locale + hg clone http://hg.mozilla.org/l10n-central/$locale l10n/$locale [ "$RELEASE_TAG" == "default" ] || hg -R l10n/$locale up -C -r $_changeset ;; esac