Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
finestructure committed Jan 15, 2024
1 parent 9f5e3a4 commit be0e0f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sources/ValidatorCore/Commands/CheckDependencies.swift
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ public struct CheckDependencies: AsyncParsableCommand {
}

// merge with existing and sort result
let merged = (Array(packageList.map(\.packageURL)) + Array(newPackages.map(\.value.packageURL)))
.sorted()
let merged = (packageList.map(\.packageURL) + newPackages.map(\.packageURL)).sorted()

print("Total:", merged.count)

Expand Down

0 comments on commit be0e0f6

Please sign in to comment.