Updated the OutdatedCommand command in the executable target to use the UpdateDependenciesTask task with the "checkOutdated" flag enabled.

This commit is contained in:
Javier Cicchelli 2025-02-19 01:08:24 +01:00
parent 3139bfc811
commit 26a5e4232a

View File

@ -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)
}
}