Merge pull request #942 from multica-ai/agent/j/e9dce818

fix(cli): fix Windows login requiring two attempts
This commit is contained in:
Bohan Jiang
2026-04-14 13:19:46 +08:00
committed by GitHub

View File

@@ -79,7 +79,7 @@ func openBrowser(url string) error {
args = []string{url}
case "windows":
cmd = "cmd"
args = []string{"/c", "start", url}
args = []string{"/c", "start", "", url}
default:
return fmt.Errorf("unsupported platform: %s", runtime.GOOS)
}