2016-01-28 01:37:29 +00:00
|
|
|
#!/usr/bin/env bash
|
2015-09-29 22:42:49 +00:00
|
|
|
|
|
|
|
# First get the OS-specific packages
|
2015-09-30 19:39:05 +00:00
|
|
|
GOOS=windows go get $DEP_ARGS github.com/StackExchange/wmi
|
|
|
|
GOOS=windows go get $DEP_ARGS github.com/shirou/w32
|
2015-10-05 20:36:25 +00:00
|
|
|
GOOS=linux go get $DEP_ARGS github.com/docker/docker/pkg/mount
|
2015-10-06 17:51:18 +00:00
|
|
|
GOOS=linux go get $DEP_ARGS github.com/opencontainers/runc/libcontainer/cgroups/fs
|
|
|
|
GOOS=linux go get $DEP_ARGS github.com/opencontainers/runc/libcontainer/configs
|
2015-11-18 01:29:27 +00:00
|
|
|
GOOS=linux go get $DEP_ARGS github.com/coreos/go-systemd/util
|
|
|
|
GOOS=linux go get $DEP_ARGS github.com/coreos/go-systemd/dbus
|
2015-09-29 22:42:49 +00:00
|
|
|
|
|
|
|
# Get the rest of the deps
|
|
|
|
DEPS=$(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
|
2015-09-30 19:39:05 +00:00
|
|
|
go get $DEP_ARGS ./... $DEPS
|