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