Merge pull request #841 from sirupsen/fix_aix_build

Attempt to fix build break on aix
This commit is contained in:
David Bariod
2018-11-16 14:26:04 +01:00
committed by GitHub
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
// +build !appengine,!js,!windows,aix
package logrus
import "io"
func checkIfTerminal(w io.Writer) bool {
return false
}
+1 -1
View File
@@ -1,4 +1,4 @@
// +build !appengine,!js,!windows
// +build !appengine,!js,!windows,!aix
package logrus