From c6464a732b5e323f4b7a8a97ab9d9c82dbe83b1e Mon Sep 17 00:00:00 2001 From: Alexey Kontsevoy Date: Thu, 31 Jan 2019 08:14:47 -0500 Subject: [PATCH] Use xdg-open to open a default browser (#2536) --- constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.go b/constants.go index e2521d3981b24..fe8a2eb1998d1 100644 --- a/constants.go +++ b/constants.go @@ -492,7 +492,7 @@ const ( const ( // OpenBrowserLinux is the command used to open a web browser on Linux. - OpenBrowserLinux = "sensible-browser" + OpenBrowserLinux = "xdg-open" // OpenBrowserDarwin is the command used to open a web browser on macOS/Darwin. OpenBrowserDarwin = "open"