Verified Commit 319de624 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Default platforms to "all"

parent cd4ae20f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ PLATFORM_OPTS = ["all", *PLATFORMS]

@click.command
@click.option("--output", type=click.Path(file_okay=False), default="dist")
@click.option("--platform", "platforms", type=click.Choice(PLATFORM_OPTS), multiple=True)
@click.option("--platform", "platforms", type=click.Choice(PLATFORM_OPTS), multiple=True, default=["all"])
@click.argument("packages", nargs=-1, required=True)
def cli(output: str, platforms: Sequence[str], packages: Sequence[str]) -> None:
	config_resource = resources.files(__package__) / "bake.hcl"