Improve shell commands

This commit is contained in:
Zachary Yedidia
2018-01-22 17:20:03 -05:00
parent 4f41881c10
commit 0a49ea0a0d
3 changed files with 5 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd
package main
import "errors"
const TermEmuSupported = false
func RunTermEmulator(input string, wait bool, getOutput bool) error {
return errors.New("Unsupported operating system")
}