aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/helper.py
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2019-08-12 10:35:16 -0700
committerGravatar GitHub <noreply@github.com>2019-08-12 10:35:16 -0700
commit0c6cc5cae8ac393fb7158ae50e9988d0a37a4d82 (patch)
treeb3ba12ad025f1da4174d3d54d816d1933d3300fb /infra/helper.py
parent6dd54f6381b9f7ecea6a52b16bd52d64b789aa87 (diff)
Use "x86" instead of "i386" for better name recognition. (#2685)
It seems more people understand x86 than i386, use this term instead.
Diffstat (limited to 'infra/helper.py')
-rwxr-xr-xinfra/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/helper.py b/infra/helper.py
index 71652a3b..191ac188 100755
--- a/infra/helper.py
+++ b/infra/helper.py
@@ -261,7 +261,7 @@ def _get_work_dir(project_name=''):
return os.path.join(BUILD_DIR, 'work', project_name)
-def _add_architecture_args(parser, choices=('x86_64', 'i386')):
+def _add_architecture_args(parser, choices=('x86_64', 'x86')):
"""Add common architecture args."""
parser.add_argument('--architecture', default='x86_64', choices=choices)