vendor: fix go-iastty to not break on unknown operating systems

pull/68/head
Eric Chiang 8 years ago
parent c1c3dc36d0
commit 9f43e85921

@ -16,7 +16,7 @@ import (
// |/ \_( # |"
// C/ ,--___/
var VERSION string = "0.3.9"
var VERSION string = "0.4.0"
func main() {
// process flags and arguments

@ -0,0 +1,8 @@
// +build dragonfly nacl plan9
package isatty
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
return false
}
Loading…
Cancel
Save