Correzione allo script di build.
This commit is contained in:
parent
2f1591cb5d
commit
d4d279991a
6
build.py
6
build.py
|
@ -4,8 +4,8 @@ import urllib.request
|
|||
from lxml import etree
|
||||
import tempfile, os, sys, subprocess, shutil
|
||||
|
||||
class Build():
|
||||
LANGSTD = ['ar', 'de', 'en-GB', 'es', 'fr', 'it', 'ja', 'ko', 'pt', 'pt-BR', 'ru', 'zh-CN', 'zh-TW']
|
||||
class Build(object):
|
||||
LANGSTD = [ 'ar', 'de', 'en-GB', 'es', 'fr', 'it', 'ja', 'ko', 'pt', 'pt-BR', 'ru', 'zh-CN', 'zh-TW' ]
|
||||
|
||||
def __init__(self, query, arch, url):
|
||||
"""Build all versions that can be found in the indicated repo."""
|
||||
|
@ -61,7 +61,7 @@ class Build():
|
|||
|
||||
# Let's process standard languages and append results to the
|
||||
# buildtarball
|
||||
for lang in LANGSTD:
|
||||
for lang in Build.LANGSTD:
|
||||
buildtarballs.extend([ x for x in self.__tarballs__ if ('langpack_' + lang) in x ])
|
||||
# If it was a build with offline help, another extend would have
|
||||
# solved it:
|
||||
|
|
Loading…
Reference in New Issue