Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 44d6123

Browse files
committed
get dependencies without installing them
For now, make dev creates in ${MAIN_GOPATH}/bin/ files like 'provider-google' alongside with 'terraform-provider-google'. If we decided to build plugins with custom names and install them manually with 'cp' command, it could make sense not to do it here.
1 parent 0629475 commit 44d6123

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)
1919
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
2020
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd}
2121

22-
# Install dependencies unless running in quick mode
22+
# Get dependencies unless running in quick mode
2323
if [ "${TF_QUICKDEV}x" == "x" ]; then
2424
echo "==> Getting dependencies..."
25-
go get ./...
25+
go get -d ./...
2626
fi
2727

2828
# Delete the old dir

0 commit comments

Comments
 (0)