From b5d18c0d281b5bcd4dc13cc72d897c38fd4bb374 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 6e5ebae0e..d46146ca8 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