Fix typo in build wheel command

A missing comma was causing the strings to be concatenated,
resulting in a wrong command that caused the validate job
to fail.

Change-Id: I7c5dab48db725608c7b1cfa4e8e8034d8225b165
This commit is contained in:
Iury Gregory Melo Ferreira 2022-05-06 11:54:57 -03:00
parent f7beb542ab
commit 83571291e5

View File

@ -94,7 +94,7 @@ def build_sdist(workdir, repo):
'SKIP_GENERATE_AUTHORS': '1',
'SKIP_WRITE_GIT_CHANGELOG': '1',
}
cmd = [python, '-m', 'build' '--sdist', '--wheel']
cmd = [python, '-m', 'build', '--sdist', '--wheel']
processutils.check_call(
cmd,
cwd=dest,