Merge pull request #1536 from shvar/patch-1
get dependencies without installing them
This commit is contained in:
commit
e0dee1a3aa
|
@ -19,10 +19,10 @@ GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)
|
||||||
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
|
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
|
||||||
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd}
|
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd}
|
||||||
|
|
||||||
# Install dependencies unless running in quick mode
|
# Get dependencies unless running in quick mode
|
||||||
if [ "${TF_QUICKDEV}x" == "x" ]; then
|
if [ "${TF_QUICKDEV}x" == "x" ]; then
|
||||||
echo "==> Getting dependencies..."
|
echo "==> Getting dependencies..."
|
||||||
go get ./...
|
go get -d ./...
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Delete the old dir
|
# Delete the old dir
|
||||||
|
|
Loading…
Reference in New Issue