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.
parsePodNames
1 parent 252310e commit 0d34710Copy full SHA for 0d34710
ReleaseTooling/Sources/ManifestParser/main.swift
@@ -42,15 +42,12 @@ struct ManifestParser: ParsableCommand {
42
})
43
var outputFilePath: URL
44
45
- @Option(parsing: .upToNextOption, help: "Podspec files that will not be included.")
46
- var excludedSpecs: [String]
47
-
48
@Flag(help: "Parsing mode for manifest")
49
var mode: ParsingMode
50
51
func parsePodNames(_ manifest: Manifest) throws {
52
var output: [String] = []
53
- for pod in manifest.pods {
+ for pod in manifest.pods.filter({ $0.releasing }) {
54
output.append(pod.name)
55
}
56
do {
0 commit comments