Skip to content

Commit 331687a

Browse files
committed
$ go get -d is deprecated
1 parent 8bbc4f9 commit 331687a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build-go-project.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,10 @@ buildstep() {
5959
heading1End
6060
}
6161

62+
# go would download missing dependencies on build anyway, but it's nice to run this step explicitly
63+
# if not for nothing else than to get the "downloading" items under its own log line group
6264
downloadDependencies() {
63-
go get -d ./...
65+
go get ./...
6466
}
6567

6668
tests() {

0 commit comments

Comments
 (0)