Browse Source

Don't use syscall package on appengine

Fixes #52.
Carl Jackson 11 years ago
parent
commit
b75b7c7951
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      bind/einhorn.go
  2. +1
    -1
      bind/einhorn_windows.go
  3. +1
    -1
      bind/systemd.go
  4. +1
    -1
      bind/systemd_windows.go
  5. +1
    -1
      graceful/einhorn.go

+ 1
- 1
bind/einhorn.go View File

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


+ 1
- 1
bind/einhorn_windows.go View File

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


+ 1
- 1
bind/systemd.go View File

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


+ 1
- 1
bind/systemd_windows.go View File

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


+ 1
- 1
graceful/einhorn.go View File

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


Loading…
Cancel
Save