From e101f753417e0b0a0ce8a0af8a9a443df5339aff Mon Sep 17 00:00:00 2001 From: Carl Jackson Date: Tue, 26 Aug 2014 10:20:26 -0700 Subject: [PATCH] Boolean logic is hard, guys :( The result of this was that builds were broken on windows and app engine. Fixes #59. --- bind/einhorn.go | 2 +- bind/systemd.go | 2 +- graceful/einhorn.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bind/einhorn.go b/bind/einhorn.go index dc9aa38..d18b694 100644 --- a/bind/einhorn.go +++ b/bind/einhorn.go @@ -1,4 +1,4 @@ -// +build !windows !appengine +// +build !windows,!appengine package bind diff --git a/bind/systemd.go b/bind/systemd.go index 49d0013..292f509 100644 --- a/bind/systemd.go +++ b/bind/systemd.go @@ -1,4 +1,4 @@ -// +build !windows !appengine +// +build !windows,!appengine package bind diff --git a/graceful/einhorn.go b/graceful/einhorn.go index 168f5b7..ad78d1c 100644 --- a/graceful/einhorn.go +++ b/graceful/einhorn.go @@ -1,4 +1,4 @@ -// +build !windows !appengine +// +build !windows,!appengine package graceful