mirror of https://github.com/sirupsen/logrus.git
Merge pull request #841 from sirupsen/fix_aix_build
Attempt to fix build break on aix
This commit is contained in:
commit
b0e671819e
|
@ -0,0 +1,9 @@
|
||||||
|
// +build !appengine,!js,!windows,aix
|
||||||
|
|
||||||
|
package logrus
|
||||||
|
|
||||||
|
import "io"
|
||||||
|
|
||||||
|
func checkIfTerminal(w io.Writer) bool {
|
||||||
|
return false
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
// +build !appengine,!js,!windows
|
// +build !appengine,!js,!windows,!aix
|
||||||
|
|
||||||
package logrus
|
package logrus
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue