From d548cf4e6c1b5f9098c61c78a2f3f93b4e0189ce Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Tue, 18 Feb 2025 23:55:47 +0100 Subject: [PATCH] Added the Build command to the subcommands lists of the Colibri command in the executable target --- Executable/Sources/Colibri.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Executable/Sources/Colibri.swift b/Executable/Sources/Colibri.swift index 194d287..a12f201 100644 --- a/Executable/Sources/Colibri.swift +++ b/Executable/Sources/Colibri.swift @@ -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 + ], ) }