From 26a5e4232a88729c8d304f6004508f1241306798 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 19 Feb 2025 01:08:24 +0100 Subject: [PATCH] Updated the OutdatedCommand command in the executable target to use the UpdateDependenciesTask task with the "checkOutdated" flag enabled. --- Executable/Sources/Commands/OutdatedCommand.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Executable/Sources/Commands/OutdatedCommand.swift b/Executable/Sources/Commands/OutdatedCommand.swift index 686da2b..2027bb6 100644 --- a/Executable/Sources/Commands/OutdatedCommand.swift +++ b/Executable/Sources/Commands/OutdatedCommand.swift @@ -20,9 +20,9 @@ extension Colibri { mutating func run() async throws { let terminalService = TerminalService() - let outdatedDependencies = OutdatedDependenciesTask(terminalService: terminalService) + let updateDependencies = UpdateDependenciesTask(terminalService: terminalService) - try await outdatedDependencies(at: options.locationURL) + try await updateDependencies(at: options.locationURL, checkOutdated: true) } }