MozillaFirefox/create-tar.sh
branchfirefox58
changeset 1028 4ce2b699562f
parent 1026 963c89cda54b
child 1031 4b419fce88dc
--- a/MozillaFirefox/create-tar.sh	Wed Jan 24 17:02:23 2018 +0100
+++ b/MozillaFirefox/create-tar.sh	Wed Feb 07 19:40:32 2018 +0100
@@ -7,8 +7,8 @@
 
 CHANNEL="release"
 BRANCH="releases/mozilla-$CHANNEL"
-RELEASE_TAG="40755aa80f41ee6df8995ae44044caf7a024b128"
-VERSION="58.0"
+RELEASE_TAG="FIREFOX_58_0_1_RELEASE"
+VERSION="58.0.1"
 
 # 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