We're building on go1.3+, so remove workaround for FreeBSD.

This commit is contained in:
Andrey Smirnov
2015-02-16 00:15:54 +03:00
parent 36792bba29
commit f153c7c3ea
2 changed files with 0 additions and 12 deletions

View File

@@ -1,5 +1,3 @@
// +build !freebsd
package console
import (

View File

@@ -1,10 +0,0 @@
// +build freebsd
package console
// RunningOnTerminal checks whether stdout is terminal
//
// Stub for FreeBSD, until in go1.3 terminal.IsTerminal would start working for FreeBSD
func RunningOnTerminal() bool {
return false
}