From 53086b0369daf6a4fa953014083c0b0033b2fe9a Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 19 Feb 2025 01:10:28 +0100 Subject: [PATCH] Added the Update command to the subcommands 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 288e88b..0aee64c 100644 --- a/Executable/Sources/Colibri.swift +++ b/Executable/Sources/Colibri.swift @@ -10,7 +10,8 @@ struct Colibri: AsyncParsableCommand { subcommands: [ Build.self, Create.self, - Outdated.self + Outdated.self, + Update.self ], defaultSubcommand: Create.self )