Skip to content

Commit

Permalink
Run all batch bundle builds
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdewid committed Dec 29, 2020
1 parent d3f77e6 commit 305128a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/FunderMaps.Cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ private static CommandLineBuilder AddLocalCommands(this CommandLineBuilder rootB
command.AddCommand(subcommand);
}

{
Command subcommand = new("build-bundle-all", "The all maplayer bundles");
subcommand.Handler = DriverHandler.InstantiateDriver(BatchDriver.BuildAllAsync);
command.AddCommand(subcommand);
}

{
Command subcommand = new("status", "Print the batch status reports");
subcommand.Handler = DriverHandler.InstantiateDriver(BatchDriver.StatusAsync);
Expand Down

0 comments on commit 305128a

Please sign in to comment.