We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e25a4 commit 4b2bb2dCopy full SHA for 4b2bb2d
ZipBuilder/Sources/ZipBuilder/ZipBuilder.swift
@@ -439,7 +439,7 @@ struct ZipBuilder {
439
result += "- \(framework).framework\n"
440
}
441
442
- result += "\n"
+ result += "\n" // Necessary for Resource message to print properly in markdown.
443
444
// Check if there is a Resources directory, and if so, add the disclaimer to the dependency
445
// string.
@@ -449,6 +449,7 @@ struct ZipBuilder {
449
in: dir)
450
if !resourceDirs.isEmpty {
451
result += Constants.resourcesRequiredText
452
+ result += "\n" // Separate from next pod in listing for text version.
453
454
} catch {
455
fatalError("""
0 commit comments