Margo Crawford e5acc0e840
import ptls rather than having a separate file with build tags
for kube cert agent and pinniped cli

Signed-off-by: Margo Crawford <margaretc@vmware.com>
2022-03-29 14:40:16 -04:00

25 lines
506 B
Go

// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"os"
"github.com/pkg/browser"
"go.pinniped.dev/cmd/pinniped/cmd"
_ "go.pinniped.dev/internal/crypto/ptls"
)
//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() {
cmd.Execute()
}