osbuild.py: fix run_assembler() API

The `interactive` argument was left out from commit
767b249b2d.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2019-07-01 22:56:06 +02:00
parent 037f439d01
commit 3b93fb6431

View file

@ -144,7 +144,7 @@ class BuildRoot:
"output": r.stdout
}
def run_assembler(self, assembler, tree, input_dir=None, output_dir=None):
def run_assembler(self, assembler, tree, input_dir=None, output_dir=None, interactive=False):
if output_dir and not os.path.exists(output_dir):
os.makedirs(output_dir)