From 265271e721e191a76b710cc2c87e19070808539b Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Mon, 5 Oct 2015 13:36:25 -0700 Subject: [PATCH] OS specific build dependencies --- scripts/deps.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/deps.sh b/scripts/deps.sh index dfe348ac7..ef27bd4b4 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -3,6 +3,8 @@ # 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/units +GOOS=linux go get $DEP_ARGS github.com/docker/docker/pkg/mount # Get the rest of the deps DEPS=$(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)