From 6c81dc291e2a565f68a9c81d2b296e0e8a16ead6 Mon Sep 17 00:00:00 2001 From: Johan Westling Date: Thu, 23 Jul 2020 10:06:40 +0300 Subject: [PATCH] Minor update to comment --- cmd/cloudflared/shell/launch_browser_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cloudflared/shell/launch_browser_unix.go b/cmd/cloudflared/shell/launch_browser_unix.go index 2ebe9590..a8ff5f8d 100644 --- a/cmd/cloudflared/shell/launch_browser_unix.go +++ b/cmd/cloudflared/shell/launch_browser_unix.go @@ -8,7 +8,7 @@ import ( ) func getBrowserCmd(url string) *exec.Cmd { - // Check for Windows Subsystem for Linux (v2+). + // Check if wslview is available (Windows Subsystem for Linux). if _, err := os.Stat("/usr/bin/wslview"); err == nil { return exec.Command("wslview", url) }