Skip to content

Commit

Permalink
fix(drivers): fix drivers on linux (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
kblok authored Mar 2, 2021
1 parent c7cc90c commit b2b0746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Common/PackageInfo.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project>
<PropertyGroup>
<AssemblyVersion>0.191.1</AssemblyVersion>
<AssemblyVersion>0.191.2</AssemblyVersion>
<PackageVersion>$(AssemblyVersion)</PackageVersion>
<DriverVersion>1.9.1-1614225150000</DriverVersion>
<ReleaseVersion>$(AssemblyVersion)</ReleaseVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/PlaywrightSharp/Transport/Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ private static string GetPath(string driversPath)
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
runnerName = "playwright.sh";
platformId = "linux";
platformId = "unix";
}
else
{
Expand Down

0 comments on commit b2b0746

Please sign in to comment.