1
0
mirror of https://github.com/fumiama/terasu-cloudflared.git synced 2026-06-06 17:40:24 +08:00

AUTH-2077: Quotes open browser command in windows

This commit is contained in:
Michael Borkenstein
2019-09-23 15:19:54 -05:00
parent 1d5cc45ac7
commit 133e6fdc88
5 changed files with 52 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
//+build darwin
package shell
import (
"os/exec"
)
func getBrowserCmd(url string) *exec.Cmd {
return exec.Command("open", url)
}