mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-10 21:53:57 +08:00
833e15e078
Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) from 1.9.3 to 1.9.4. - [Release notes](https://github.com/sirupsen/logrus/releases) - [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md) - [Commits](https://github.com/sirupsen/logrus/compare/v1.9.3...v1.9.4) --- updated-dependencies: - dependency-name: github.com/sirupsen/logrus dependency-version: 1.9.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
9 lines
95 B
Go
9 lines
95 B
Go
//go:build wasi
|
|
// +build wasi
|
|
|
|
package logrus
|
|
|
|
func isTerminal(fd int) bool {
|
|
return false
|
|
}
|