Trovato problema per build standard non corrette con le lingue. Corretto script di check_updates.
This commit is contained in:
parent
6895ec357b
commit
b21d14324a
@ -217,9 +217,9 @@ class Build(object):
|
|||||||
elif self.language == 'standard':
|
elif self.language == 'standard':
|
||||||
for lang in Build.LANGSTD:
|
for lang in Build.LANGSTD:
|
||||||
if self.offline_help:
|
if self.offline_help:
|
||||||
buildtarballs.extend([ x for x in self.tarballs[arch] if ('pack' + lang) in x ])
|
buildtarballs.extend([ x for x in self.tarballs[arch] if ('pack_' + lang) in x ])
|
||||||
else:
|
else:
|
||||||
buildtarballs.extend([ x for x in self.tarballs[arch] if ('langpack' + lang) in x ])
|
buildtarballs.extend([ x for x in self.tarballs[arch] if ('langpack_' + lang) in x ])
|
||||||
elif self.language == 'full':
|
elif self.language == 'full':
|
||||||
if self.offline_help:
|
if self.offline_help:
|
||||||
# We need also all help. Let's replace buildtarball with the
|
# We need also all help. Let's replace buildtarball with the
|
||||||
|
Reference in New Issue
Block a user