github.com/pengwynn/gh@v1.0.1-0.20140118055701-14327ca3942e/github/util.go (about) 1 // +build !windows 2 3 package github 4 5 import ( 6 "code.google.com/p/go.crypto/ssh/terminal" 7 ) 8 9 func isTerminal(fd uintptr) bool { 10 return terminal.IsTerminal(int(fd)) 11 }