Skip to content

Commit

Permalink
Resolve PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sichan Yoo committed Aug 6, 2024
1 parent 88e429d commit 99df040
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AWSSDKSwiftCLI/Sources/AWSCLIUtils/FileManager+Utils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public extension FileManager {
try FileManager.default
.contentsOfDirectory(atPath: "Sources/Core")
.sorted()
.filter { !($0 == "AWSSDKForSwift") } // Ignore documentation module
.filter { !$0.hasPrefix(".") } // Ignore .DS_Store file
.filter { $0 != "AWSSDKForSwift" } // Ignore documentation module
.filter { !$0.hasPrefix(".") }
}

/// Returns the list of integration tests.
Expand Down

0 comments on commit 99df040

Please sign in to comment.