From d21a0a7d2ce94db31925fe53f041c9fe796f62b0 Mon Sep 17 00:00:00 2001 From: Arceliar Date: Sat, 24 Jul 2021 15:53:22 -0500 Subject: [PATCH] fix build directive --- cmd/yggdrasil/setids_other.go | 2 +- cmd/yggdrasil/setids_unix.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/yggdrasil/setids_other.go b/cmd/yggdrasil/setids_other.go index 7126d616..3b7f6a34 100644 --- a/cmd/yggdrasil/setids_other.go +++ b/cmd/yggdrasil/setids_other.go @@ -1,4 +1,4 @@ -// +build !unix +// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris package main diff --git a/cmd/yggdrasil/setids_unix.go b/cmd/yggdrasil/setids_unix.go index 66327567..66a87fcb 100644 --- a/cmd/yggdrasil/setids_unix.go +++ b/cmd/yggdrasil/setids_unix.go @@ -1,4 +1,4 @@ -// +build unix +// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris package main