Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ tidy:
make clean_go
go mod tidy

# Keep dependencies up to date
deps-update:
ifeq (,$(wildcard go.mod))
$(error Missing go.mod file)
endif
go get -u ./...

# Install everything
# optional DEST=destination_path
install:
Expand Down
Loading