From f72bde409fbb5c62f5353f0a0748aa82df74cd64 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 11 May 2015 10:34:17 -0700 Subject: [PATCH] don't compile for open/freebsd [GH-136] --- scripts/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/build.sh b/scripts/build.sh index f6cdafa010..472b59988d 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -39,6 +39,8 @@ fi echo "==> Building..." gox \ -os="${XC_OS}" \ + -os="!freebsd" \ + -os="!openbsd" \ -arch="${XC_ARCH}" \ -ldflags "-X github.com/hashicorp/vault/cli.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \ -output "pkg/{{.OS}}_{{.Arch}}/vault" \