From bb7b59033da44377caf1a3203cfa2c3645d543ee Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Thu, 6 Apr 2023 17:08:28 -0700 Subject: [PATCH] app/vmctl/terminal: fix builds for GOOS=freebsd and GOOS=openbsd This is a follow-up for 8da9502df6bd011ee8bf55c5e22abc9f70d87917 --- app/vmctl/terminal/unix_bsd.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/vmctl/terminal/unix_bsd.go b/app/vmctl/terminal/unix_bsd.go index 6e5ebae0e2..d46146ca88 100644 --- a/app/vmctl/terminal/unix_bsd.go +++ b/app/vmctl/terminal/unix_bsd.go @@ -1,5 +1,5 @@ -//go:build darwin -// +build darwin +//go:build darwin || freebsd || openbsd +// +build darwin freebsd openbsd package terminal