Skip to content

Commit

Permalink
Fix mac arm64 suffix (#214)
Browse files Browse the repository at this point in the history
closes #210
  • Loading branch information
fmoliveira committed Nov 8, 2022
1 parent 2215d1e commit 5ed5944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebDriverManager/DriverConfigs/Impl/ChromeConfig.cs
Expand Up @@ -36,7 +36,7 @@ private string GetUrl()
{
var architectureExtension =
RuntimeInformation.ProcessArchitecture == System.Runtime.InteropServices.Architecture.Arm64
? "arm64"
? "_arm64"
: "64";
return $"{BaseVersionPatternUrl}chromedriver_mac{architectureExtension}.zip";
}
Expand Down

0 comments on commit 5ed5944

Please sign in to comment.