Skip to content

Commit a5052b9

Browse files
authored
Bullet Format File Error Message (apple#697)
1 parent 3f83ef7 commit a5052b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/PluginsShared/PluginError.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ enum PluginError: Swift.Error, CustomStringConvertible, LocalizedError {
3737
let targetNames = targetNames.joined(separator: ", ", lastSeparator: " and ")
3838
return "Found no targets with names \(targetNames)."
3939
case .fileErrors(let fileErrors):
40-
return "Issues with required files: \(fileErrors.map(\.description).joined(separator: ", and"))."
40+
return "Issues with required files:\n\(fileErrors.map { "- " + $0.description }.joined(separator: "\n"))."
4141
}
4242
}
4343

0 commit comments

Comments
 (0)