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.
buf.gen.yaml
1 parent 0a1de68 commit 63841e4Copy full SHA for 63841e4
Plugins/ConnectPluginUtilities/GeneratorOptions.swift
@@ -46,6 +46,10 @@ private enum CommandLineParameter: String {
46
return try commandLineParameters
47
.components(separatedBy: ",")
48
.compactMap { parameter in
49
+ if parameter.isEmpty {
50
+ return nil
51
+ }
52
+
53
guard let index = parameter.firstIndex(of: "=") else {
54
throw Error.unknownParameter(string: parameter)
55
}
0 commit comments