From b2b07467bc23e44de1b72df42d2424146ed01cad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Kondratiuk?= Date: Tue, 2 Mar 2021 08:38:28 -0300 Subject: [PATCH] fix(drivers): fix drivers on linux (#1227) --- src/Common/PackageInfo.props | 2 +- src/PlaywrightSharp/Transport/Connection.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/PackageInfo.props b/src/Common/PackageInfo.props index 6f9e12726b..fb9592e053 100644 --- a/src/Common/PackageInfo.props +++ b/src/Common/PackageInfo.props @@ -1,7 +1,7 @@ - 0.191.1 + 0.191.2 $(AssemblyVersion) 1.9.1-1614225150000 $(AssemblyVersion) diff --git a/src/PlaywrightSharp/Transport/Connection.cs b/src/PlaywrightSharp/Transport/Connection.cs index 0ff7f38b59..a9d7a1f0f2 100644 --- a/src/PlaywrightSharp/Transport/Connection.cs +++ b/src/PlaywrightSharp/Transport/Connection.cs @@ -291,7 +291,7 @@ private static string GetPath(string driversPath) else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { runnerName = "playwright.sh"; - platformId = "linux"; + platformId = "unix"; } else {