diff options
Diffstat (limited to 'pkg/terminal/console_unix.go')
-rw-r--r-- | pkg/terminal/console_unix.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/terminal/console_unix.go b/pkg/terminal/console_unix.go index 6eee6aa2f..53290be24 100644 --- a/pkg/terminal/console_unix.go +++ b/pkg/terminal/console_unix.go @@ -1,8 +1,9 @@ +//go:build !windows // +build !windows package terminal -// SetConsole for non-windows environments is a no-op +// SetConsole for non-windows environments is a no-op. func SetConsole() error { return nil } |