fixes issue where utils.OpenBrowser fails and exits the program despite showing a manual link to access. This commit logs message instead of returning error when OpenBrowser errors. Fixes #1645
@@ -67,7 +67,7 @@ func Login(
err = utils.OpenBrowser(loginURL)
if err != nil {
- return "", fmt.Errorf("Could not open browser: %v", err)
+ fmt.Printf("Could not open browser. Please navigate to the link manually.")
}
for {