vendor: add missing deps and remove go get in .travis.yml

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
This commit is contained in:
Akihiro Suda 2017-01-12 05:02:58 +00:00
parent 9a740a0a42
commit 4a7a8efc2d
129 changed files with 11694 additions and 1733 deletions

20
vendor/github.com/nightlyone/lockfile/lockfile_unix.go generated vendored Normal file
View file

@ -0,0 +1,20 @@
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
package lockfile
import (
"os"
"syscall"
)
func isRunning(pid int) (bool, error) {
proc, err := os.FindProcess(pid)
if err != nil {
return false, err
}
if err := proc.Signal(syscall.Signal(0)); err != nil {
return false, nil
}
return true, nil
}