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.
1 parent fbdabce commit ac21bfaCopy full SHA for ac21bfa
lib/PuppeteerSharp/BrowserFetcher.cs
100755
100644
@@ -267,8 +267,9 @@ private string GetFolderPath(int revision)
267
private void NativeExtractToDirectory(string zipPath, string folderPath)
268
{
269
var process = new Process();
270
+
271
process.StartInfo.FileName = "unzip";
- process.StartInfo.Arguments = $"{zipPath} -d {folderPath}";
272
+ process.StartInfo.Arguments = $"\"{zipPath}\" -d \"{folderPath}\"";
273
process.Start();
274
process.WaitForExit();
275
}
0 commit comments