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
commit b0e671819e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

9
terminal_check_aix.go Normal file
View File

@ -0,0 +1,9 @@
// +build !appengine,!js,!windows,aix
package logrus
import "io"
func checkIfTerminal(w io.Writer) bool {
return false
}

View File

@ -1,4 +1,4 @@
// +build !appengine,!js,!windows // +build !appengine,!js,!windows,!aix
package logrus package logrus