From 31e110ccae20b0bff6c04c43d5a78f2a90a248ff Mon Sep 17 00:00:00 2001 From: Davide D'Agostino Date: Tue, 25 Jul 2017 14:20:14 -0700 Subject: [PATCH] IsTerminal should work in nacl too I'm running logrus on a nacl environment and I get: ``` github.com/sirupsen/logrus/text_formatter.go:70: undefined: IsTerminal ``` --- terminal_notwindows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal_notwindows.go b/terminal_notwindows.go index 190297a..c3b7403 100644 --- a/terminal_notwindows.go +++ b/terminal_notwindows.go @@ -3,7 +3,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build linux darwin freebsd openbsd netbsd dragonfly +// +build linux darwin freebsd openbsd netbsd dragonfly nacl // +build !appengine package logrus