Skip to content

Commit b0e6718

Browse files
authored
Merge pull request #841 from sirupsen/fix_aix_build
Attempt to fix build break on aix
2 parents 44067ab + ff92509 commit b0e6718

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

terminal_check_aix.go

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// +build !appengine,!js,!windows,aix
2+
3+
package logrus
4+
5+
import "io"
6+
7+
func checkIfTerminal(w io.Writer) bool {
8+
return false
9+
}

terminal_check_notappengine.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build !appengine,!js,!windows
1+
// +build !appengine,!js,!windows,!aix
22

33
package logrus
44

0 commit comments

Comments
 (0)