1
0
Fork 0

Trovato forse problema: passaggio di arch.

This commit is contained in:
Emiliano Vavassori 2022-03-21 00:48:42 +01:00
parent 9ae9585d20
commit daff0535d3
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ def build(arch, language, offline, portable, updatable, download, storage, check
# Parsing options
if arch.lower() == 'all':
# We need to build it twice.
arches = [ 'x86', 'x86_64' ]
arches = [ u'x86', u'x86_64' ]
else:
arches = [ arch.lower() ]