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:
parent
f7beb542ab
commit
83571291e5
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user