From f63883f2823ded4c312f903c1fa3024c3130bc7a Mon Sep 17 00:00:00 2001 From: Bruno Meneguele Date: Thu, 20 May 2021 13:31:31 -0300 Subject: [PATCH] cmd/util_bsd: add BSD operating systems Even though we don't directly support BSD systems, it doesn't mean we can't help them to build `lab` if the work is pretty small. This patch adds the three officialy supported BSD OSes by golang to the cmd/util_bsd file, since they are pretty close to what we need in lab from darwin (or the other way around? :). Signed-off-by: Bruno Meneguele --- cmd/util_bsd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/util_bsd.go b/cmd/util_bsd.go index 67f771b4..784167f8 100644 --- a/cmd/util_bsd.go +++ b/cmd/util_bsd.go @@ -1,6 +1,6 @@ // This file contains Darwin (MacOS) and *BSD specific calls. -// +build darwin +// +build freebsd openbsd dragonfly darwin package cmd