diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-29 12:43:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 12:43:20 -0400 |
commit | c682ca3d35a3e4f9265e10dc9898cbe3ac3d35a2 (patch) | |
tree | 9ccceb17b10298a4389b0f7963d8c09bcf625e56 /pkg/terminal/console_unix.go | |
parent | d90e8b6873f3f06a1b2cfe9f55ac61b3e5904bc3 (diff) | |
parent | dfb2f92583a5797b1ee8cdf29399dc29b7f3c6d3 (diff) | |
download | podman-c682ca3d35a3e4f9265e10dc9898cbe3ac3d35a2.tar.gz podman-c682ca3d35a3e4f9265e10dc9898cbe3ac3d35a2.tar.bz2 podman-c682ca3d35a3e4f9265e10dc9898cbe3ac3d35a2.zip |
Merge pull request #6794 from baude/v2remotewindowsterminal
Set console mode for windows
Diffstat (limited to 'pkg/terminal/console_unix.go')
-rw-r--r-- | pkg/terminal/console_unix.go | 8 |
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 +} |