Merge branch 'main' into oidc_password_grant
This commit is contained in:
commit
71d6281e39
@ -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