Skip to content

Commit

Permalink
Merge pull request #105 from mmllr/master
Browse files Browse the repository at this point in the history
[Feature] COPYING License Support
  • Loading branch information
FelixHerrmann committed Feb 22, 2024
2 parents 3aad8cb + 585bdb5 commit 79ebfdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftPackageListCore/Directories/Checkouts.swift
Expand Up @@ -22,7 +22,7 @@ extension Checkouts {
)
let licenseFileURL = packageFiles.first { packageFile in
let fileName = packageFile.deletingPathExtension().lastPathComponent.lowercased()
let allowedFileNames = ["license", "licence"]
let allowedFileNames = ["license", "licence", "copying"]
return allowedFileNames.contains(fileName)
}
guard let licenseFileURL else { return nil }
Expand Down

0 comments on commit 79ebfdf

Please sign in to comment.