Merge pull request #780 from enj/enj/i/browser_stderr
cli: prevent browser output from breaking ExecCredential output
This commit is contained in:
commit
bb30569e41
@ -3,7 +3,20 @@
|
|||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "go.pinniped.dev/cmd/pinniped/cmd"
|
import (
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/pkg/browser"
|
||||||
|
|
||||||
|
"go.pinniped.dev/cmd/pinniped/cmd"
|
||||||
|
)
|
||||||
|
|
||||||
|
//nolint: gochecknoinits
|
||||||
|
func init() {
|
||||||
|
// browsers like chrome like to write to our std out which breaks our JSON ExecCredential output
|
||||||
|
// thus we redirect the browser's std out to our std err
|
||||||
|
browser.Stdout = os.Stderr
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
cmd.Execute()
|
cmd.Execute()
|
||||||
|
Loading…
Reference in New Issue
Block a user