summaryrefslogtreecommitdiff
path: root/pkg/terminal/console_unix.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-06-26 16:22:04 -0500
committerBrent Baude <bbaude@redhat.com>2020-06-29 09:17:55 -0500
commitdfb2f92583a5797b1ee8cdf29399dc29b7f3c6d3 (patch)
treeec6c2dbb56530638989a318321a264e39b21c2b5 /pkg/terminal/console_unix.go
parent771c887010709cdf718be252ca91a852c6735da7 (diff)
downloadpodman-dfb2f92583a5797b1ee8cdf29399dc29b7f3c6d3.tar.gz
podman-dfb2f92583a5797b1ee8cdf29399dc29b7f3c6d3.tar.bz2
podman-dfb2f92583a5797b1ee8cdf29399dc29b7f3c6d3.zip
Set console mode for windows
Windows terminal handling is different than darwin and linux. It needs to have the terminal mode set to enable virtual terminal processing. This allows colors and other things to work. Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/terminal/console_unix.go')
-rw-r--r--pkg/terminal/console_unix.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/terminal/console_unix.go b/pkg/terminal/console_unix.go
new file mode 100644
index 000000000..6eee6aa2f
--- /dev/null
+++ b/pkg/terminal/console_unix.go
@@ -0,0 +1,8 @@
+// +build !windows
+
+package terminal
+
+// SetConsole for non-windows environments is a no-op
+func SetConsole() error {
+ return nil
+}