Implemented the Update subcommand #7

Merged
javier merged 4 commits from command/update-dependencies into main 2025-02-19 00:14:00 +00:00
Showing only changes of commit 26a5e4232a - Show all commits

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