We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81459fb commit 9c20726Copy full SHA for 9c20726
runtime/CSharp/Antlr4BuildTasks/Antlr4ClassGenerationTaskInternal.cs
@@ -243,11 +243,11 @@ public bool Execute()
243
244
List<string> arguments = new List<string>();
245
arguments.Add("-cp");
246
- arguments.Add(ToolPath);
+ arguments.Add('"' + ToolPath + '"');
247
arguments.Add("org.antlr.v4.CSharpTool");
248
249
arguments.Add("-o");
250
- arguments.Add(OutputPath);
+ arguments.Add('"' + OutputPath + '"');
251
252
if (GenerateListener)
253
arguments.Add("-listener");
0 commit comments