Skip to content

Commit 996dc56

Browse files
committed
Fixed issue with auth url not being opened on MacOS
1 parent 837be5e commit 996dc56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Utilities/BrowserHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ internal static void OpenBrowserForInteractiveLogin(string url, int port, Cancel
225225
}
226226
else if (OperatingSystem.IsMacOS())
227227
{
228-
Process.Start("/usr/bin/open", url);
228+
Process.Start("/usr/bin/open", $"\"{url}\"");
229229
}
230230
else
231231
{

0 commit comments

Comments
 (0)