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.
nuget.exe
1 parent 78552b8 commit c608675Copy full SHA for c608675
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetExeWrapper.cs
@@ -170,7 +170,7 @@ private bool TryRestoreNugetPackage(string packagesConfig)
170
if (RunWithMono)
171
{
172
exe = "mono";
173
- args = $"{nugetExe} install -OutputDirectory \"{packageDirectory}\" \"{packagesConfig}\"";
+ args = $"\"{nugetExe}\" install -OutputDirectory \"{packageDirectory}\" \"{packagesConfig}\"";
174
}
175
else
176
@@ -240,7 +240,7 @@ private void RunMonoNugetCommand(string command, out IList<string> stdout)
240
241
242
243
- args = $"{nugetExe} {command}";
+ args = $"\"{nugetExe}\" {command}";
244
245
246
0 commit comments