Skip to content

Commit

Permalink
Remove deprecated go get -d flag
Browse files Browse the repository at this point in the history
that now represents the default behavior.
  • Loading branch information
mpass99 authored and MrSerth committed Sep 3, 2024
1 parent da0cd25 commit 43e6a3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ bootstrap: deps lint-deps gci-deps git-hooks ## Install all dependencies

.PHONY: deps
deps: ## Get the dependencies
@go get -v -d ./...
@go get -v ./...
@go install github.com/vektra/mockery/v2@latest

.PHONY: upgrade-deps
upgrade-deps: ## Upgrade the dependencies
@go get -u -v -d ./...
@go get -u -v ./...

.PHONY: tidy-deps
tidy-deps: ## Remove unused dependencies
Expand Down

0 comments on commit 43e6a3e

Please sign in to comment.