From bd3963b9f19dfce73455cf4d00f96aef8c1b4ff3 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 19 Feb 2025 00:48:03 +0100 Subject: [PATCH] Added the Outdated command to the subcommand lists of the Colibri command in the executable target. --- Executable/Sources/Colibri.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Executable/Sources/Colibri.swift b/Executable/Sources/Colibri.swift index 4359f28..288e88b 100644 --- a/Executable/Sources/Colibri.swift +++ b/Executable/Sources/Colibri.swift @@ -9,7 +9,8 @@ struct Colibri: AsyncParsableCommand { abstract: "The utility to manage your Hummingbird apps", subcommands: [ Build.self, - Create.self + Create.self, + Outdated.self ], defaultSubcommand: Create.self )