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 239536b commit 17b6fe0Copy full SHA for 17b6fe0
Scripts/SPIManifestBuilder.swift
@@ -66,8 +66,8 @@ struct SourcesBuilder {
66
return true
67
}
68
69
- sources = sourceURLs.map {
70
- let folderName = $0.lastPathComponent
+ sources = sourceURLs.map(\.lastPathComponent).sorted().map {
+ let folderName = $0
71
let targetName = folderName.replacingOccurrences(of: "-", with: "_").capitalized
72
return Source(folderName: folderName, targetName: "GitHubRestAPI\(targetName)")
73
@@ -87,6 +87,7 @@ struct SPIManifestBuilder {
87
configs:
88
- documentation_targets:
89
\#(targetNamesString)
90
+
91
"""#
92
93
0 commit comments