open-nomad/scripts/deps.sh

15 lines
675 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2015-09-29 22:42:49 +00:00
# First get the OS-specific packages
GOOS=windows go get "${DEP_ARGS}" github.com/StackExchange/wmi
GOOS=windows go get "${DEP_ARGS}" github.com/shirou/w32
GOOS=linux go get "${DEP_ARGS}" github.com/docker/docker/pkg/mount
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
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}}' ./...)
go get "${DEP_ARGS}" ./... "${DEPS}"