Upgrade dependencies

This commit is contained in:
2020-03-01 19:06:36 +01:00
parent 4ae5492877
commit ff49d76881
205 changed files with 22048 additions and 13221 deletions

View File

@ -0,0 +1,13 @@
// +build darwin dragonfly freebsd netbsd openbsd
package logrus
import "golang.org/x/sys/unix"
const ioctlReadTermios = unix.TIOCGETA
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}