Skip to content

Commit

Permalink
Merge pull request #841 from sirupsen/fix_aix_build
Browse files Browse the repository at this point in the history
Attempt to fix build break on aix
  • Loading branch information
dgsb authored Nov 16, 2018
2 parents 44067ab + ff92509 commit b0e6718
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions terminal_check_aix.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// +build !appengine,!js,!windows,aix

package logrus

import "io"

func checkIfTerminal(w io.Writer) bool {
return false
}
2 changes: 1 addition & 1 deletion terminal_check_notappengine.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build !appengine,!js,!windows
// +build !appengine,!js,!windows,!aix

package logrus

Expand Down

0 comments on commit b0e6718

Please sign in to comment.