Skip to content

Commit

Permalink
Merge pull request #973 from BryanAldrich/patch-1
Browse files Browse the repository at this point in the history
Using config file and add parameters causes a command error
  • Loading branch information
christianhelle authored Sep 4, 2024
2 parents 0bb9a15 + da59ec0 commit e1a65f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public string GenerateCode(IProgressReporter? pGenerateProgress)
var configFile = Array.Find(configFilenames, File.Exists);
if (configFile != null)
{
arguments += $"-c \"{configFile}\"";
arguments += $"-c \"{configFile}\" ";
}
}

Expand Down Expand Up @@ -151,4 +151,4 @@ public string GenerateCode(IProgressReporter? pGenerateProgress)
private static string Sanitize(string code) =>
code.Replace("using System.Net.Mime;", null);
}
}
}

0 comments on commit e1a65f8

Please sign in to comment.