2022-03-29 16:58:41 -07:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-09-16 10:19:51 -04:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-07-27 16:49:43 -07:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
2021-08-13 20:19:32 -04:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/pkg/browser"
|
|
|
|
|
|
|
|
"go.pinniped.dev/cmd/pinniped/cmd"
|
2022-03-29 16:58:41 -07:00
|
|
|
// this side effect import ensures that we use fipsonly crypto in fips_strict mode.
|
|
|
|
_ "go.pinniped.dev/internal/crypto/ptls"
|
2021-08-13 20:19:32 -04:00
|
|
|
)
|
|
|
|
|
2022-08-24 14:45:55 -07:00
|
|
|
//nolint:gochecknoinits
|
2021-08-13 20:19:32 -04:00
|
|
|
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
|
|
|
|
}
|
2020-07-27 16:49:43 -07:00
|
|
|
|
|
|
|
func main() {
|
2022-04-15 22:43:53 -04:00
|
|
|
if err := cmd.Execute(); err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2020-07-27 16:49:43 -07:00
|
|
|
}
|