Added the Build command to the subcommands lists of the Colibri command in the executable target

This commit is contained in:
Javier Cicchelli 2025-02-18 23:55:47 +01:00
parent 4cf3eb6784
commit d548cf4e6c

View File

@ -7,7 +7,10 @@ struct Colibri: AsyncParsableCommand {
static let configuration = CommandConfiguration(
abstract: "The utility to manage your Hummingbird apps",
subcommands: [Create.self]
subcommands: [
Build.self,
Create.self
],
)
}