diff --git a/cmd/crc/cmd/status.go b/cmd/crc/cmd/status.go index 7f42026586..790c690faf 100644 --- a/cmd/crc/cmd/status.go +++ b/cmd/crc/cmd/status.go @@ -7,11 +7,9 @@ import ( "net/url" "os" "path/filepath" - "runtime" "text/tabwriter" "github.com/cheggaaa/pb/v3" - "github.com/cheggaaa/pb/v3/termutil" "github.com/crc-org/crc/v2/pkg/crc/constants" "github.com/crc-org/crc/v2/pkg/crc/daemonclient" crcErrors "github.com/crc-org/crc/v2/pkg/crc/errors" @@ -97,12 +95,6 @@ func runWatchStatus(writer io.Writer, client *daemonclient.Client, cacheDir stri if startErr := barPool.Start(); startErr != nil { return } - if runtime.GOOS == "windows" { - // Print and ignore the error to continue printing - if rawErr := termutil.RawModeOff(); rawErr != nil { - fmt.Fprintf(os.Stderr, "Failed to turn off raw mode due to error: %v\n", rawErr) - } - } isPoolInit = true } else if len(loadResult.CPUUse) > len(cpuBars) { newCPUCount := len(loadResult.CPUUse) - len(cpuBars)