Set target 'all' as default.

This commit is contained in:
Sleepy Monax 2023-02-10 21:51:42 +01:00
parent e12f82b6cc
commit 2885c9dd12

View file

@ -82,6 +82,7 @@ def gen(out: TextIO, context: Context):
writer.separator("Phony targets")
writer.build("all", "phony", all)
writer.default("all")
def build(componentSpec: str, targetSpec: str, props: Props = {}) -> str: