machdyne_krote: Fix build.

This commit is contained in:
Florent Kermarrec 2022-07-19 12:17:14 +02:00
parent 7f234db35e
commit cf030402d4
1 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,8 @@ def main():
**soc_core_argdict(args)
)
builder = Builder(soc, **builder_argdict(args))
builder.build(run=args.build)
if args.build:
builder.build()
if __name__ == "__main__":
main()