github.com/mutagen-io/mutagen@v0.18.0-rc1/cmd/terminal_posix.go (about)

     1  //go:build !windows
     2  
     3  package cmd
     4  
     5  // HandleTerminalCompatibility automatically restarts the current process inside
     6  // a terminal compatibility emulator if necessary. It currently only handles the
     7  // case of mintty consoles on Windows requiring a relaunch of the current
     8  // command inside winpty.
     9  func HandleTerminalCompatibility() {
    10  	// No terminal emulation is required on POSIX systems.
    11  }