Browse Source

Boolean logic is hard, guys :(

The result of this was that builds were broken on windows and app
engine.

Fixes #59.
Carl Jackson 11 years ago
parent
commit
e101f75341
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      bind/einhorn.go
  2. +1
    -1
      bind/systemd.go
  3. +1
    -1
      graceful/einhorn.go

+ 1
- 1
bind/einhorn.go View File

@ -1,4 +1,4 @@
// +build !windows !appengine
// +build !windows,!appengine
package bind package bind


+ 1
- 1
bind/systemd.go View File

@ -1,4 +1,4 @@
// +build !windows !appengine
// +build !windows,!appengine
package bind package bind


+ 1
- 1
graceful/einhorn.go View File

@ -1,4 +1,4 @@
// +build !windows !appengine
// +build !windows,!appengine
package graceful package graceful


Loading…
Cancel
Save