1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

api: use dep instead of go get

This commit is contained in:
Adhityaa Chandrasekar
2018-10-18 01:18:01 -04:00
parent 93c9ce0cad
commit a36b11f07d
5 changed files with 20 additions and 8 deletions

View File

@ -25,15 +25,15 @@ clean:
# later down the line).
devel-go:
go get -v .
dep ensure
go build -i -v -o $(GO_DEVEL_BUILD_BINARY)
prod-go:
go get -v .
dep ensure
go build -i -v -o $(GO_PROD_BUILD_BINARY)
test-go:
go get -v .
dep ensure
go test -v .
$(shell mkdir -p $(GO_DEVEL_BUILD_DIR) $(GO_PROD_BUILD_DIR))