Upgrade dependencies

This commit is contained in:
2020-03-01 18:54:57 +01:00
parent 85db1bb248
commit bb6726a4b2
206 changed files with 22060 additions and 13231 deletions

View File

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