diff options
author | Remi Collet <fedora@famillecollet.com> | 2011-12-21 21:48:13 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2011-12-21 21:48:13 +0100 |
commit | ac3de9e33f4455a532b4ee59d5d6e57511052827 (patch) | |
tree | 9369152c426cd5d305d34cc104e7bd9faf08a49d /mklangsource.sh | |
parent | c9055b53bbb5556abebd5487b7037478e77e9261 (diff) |
Diffstat (limited to 'mklangsource.sh')
-rwxr-xr-x | mklangsource.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mklangsource.sh b/mklangsource.sh index 437add2..4a97b7f 100755 --- a/mklangsource.sh +++ b/mklangsource.sh @@ -1,20 +1,20 @@ #!/bin/bash # This checks out and builds the language sources. The lightning source needs # to already be unpacked -locales=$PWD/thunderbird-lightning-1.0/comm-beta/calendar/locales/shipped-locales +locales=$PWD/thunderbird-lightning-1.1/comm-beta/calendar/locales/shipped-locales if [ ! -f $locale ] then echo "ERROR: missing $locales, try fedpkg prep first" exit 1 fi -rm -rf l10n-miramar -mkdir l10n-miramar -cd l10n-miramar +rm -rf l10n +mkdir l10n +cd l10n for lang in $(<$locales) do - hg clone http://hg.mozilla.org/releases/l10n-miramar/$lang + hg clone http://hg.mozilla.org/releases/l10n/mozilla-aurora/$lang done # Tar up, minus the mercurial files cd .. -tar cjf l10n-miramar.tar.bz2 --exclude='.hg*' l10n-miramar +tar caf l10n.tar.xz --exclude='.hg*' l10n |