From d1fb02c39d687d0f322b4711d87c16cca960f0f5 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 7 Sep 2021 16:04:09 -0400 Subject: [PATCH] Use the hot, new Go 1.17 build tags syntax --- signals_unix.go | 1 + tty_unix.go | 1 + 2 files changed, 2 insertions(+) diff --git a/signals_unix.go b/signals_unix.go index 0ddb27d..b0ada12 100644 --- a/signals_unix.go +++ b/signals_unix.go @@ -1,3 +1,4 @@ +//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris // +build darwin dragonfly freebsd linux netbsd openbsd solaris package tea diff --git a/tty_unix.go b/tty_unix.go index 12f88ac..7bf0b45 100644 --- a/tty_unix.go +++ b/tty_unix.go @@ -1,3 +1,4 @@ +//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris // +build darwin dragonfly freebsd linux netbsd openbsd solaris package tea