Merge pull request #3068 from dhiltgen/win_pipe

Use stdin for term discovery on windows
This commit is contained in:
Daniel Hiltgen 2024-03-14 11:55:19 -07:00 committed by GitHub
commit da20786e3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -900,8 +900,7 @@ func NewCLI() *cobra.Command {
cobra.EnableCommandSorting = false cobra.EnableCommandSorting = false
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
// Enable colorful ANSI escape code in Windows terminal (disabled by default) console.ConsoleFromFile(os.Stdin) //nolint:errcheck
console.ConsoleFromFile(os.Stdout) //nolint:errcheck
} }
rootCmd := &cobra.Command{ rootCmd := &cobra.Command{