scripts: build-qemu: Always call the run() function

The helper deals with whether we are actually running or not. We want it
to show the arguments even if not. So always call it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-08-08 15:56:02 -06:00
parent 0d08920da2
commit 79c09c4244

View File

@@ -297,8 +297,7 @@ class BuildQemu:
if self.args.sct_run and self.seq_fname:
self.update_sct_sequence()
if self.args.run:
self.run_qemu()
self.run_qemu()
def main():