diff --git a/term_unix.go b/term_unix.go index 4c60e45..6849b6e 100644 --- a/term_unix.go +++ b/term_unix.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || zos // +build aix darwin dragonfly freebsd linux netbsd openbsd zos package term diff --git a/term_unix_bsd.go b/term_unix_bsd.go index 3342be0..853b3d6 100644 --- a/term_unix_bsd.go +++ b/term_unix_bsd.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build darwin || dragonfly || freebsd || netbsd || openbsd // +build darwin dragonfly freebsd netbsd openbsd package term diff --git a/term_unsupported.go b/term_unsupported.go index 8b5d1ba..f1df850 100644 --- a/term_unsupported.go +++ b/term_unsupported.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !zos && !windows && !solaris && !plan9 // +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!zos,!windows,!solaris,!plan9 package term