tools/generate-test-cases: fix missing comma

This slipped in aeddf7e501 and
survived 28aaa129ff, let's fix it.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2021-03-17 22:05:10 +01:00 committed by msehnout
parent 65ca29badb
commit dbee4cdbd1

View file

@ -23,7 +23,7 @@ def run_osbuild(manifest, store, output, export):
subprocess.run(["osbuild",
"--store", store,
"--output-directory", output,
"--checkpoint", "build"
"--checkpoint", "build",
"--export", export,
"-"],
stdout=log,