File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ os = $(word 1, $(temp))
1212arch = $(word 2, $(temp ) )
1313ext = $(shell if [ "$(os ) " = "windows" ]; then echo ".exe"; fi)
1414
15- .PHONY : all release fmt clean serv $(PLATFORMS ) docker check
15+ .PHONY : all release fmt clean serv $(PLATFORMS ) docker check deps
1616
1717all : certgraph
1818
@@ -29,6 +29,11 @@ $(PLATFORMS): $(SOURCES)
2929docker : Dockerfile $(ALL_SOURCES )
3030 docker build -t lanrat/certgraph .
3131
32+ deps : go.mod
33+ GOPROXY=direct go mod download
34+ GOPROXY=direct go get -u all
35+ go mod tidy
36+
3237fmt :
3338 gofmt -s -w -l .
3439
Original file line number Diff line number Diff line change 1+ // Package multi exposes a generic driver interface allowing you to merge the results of multiple other drivers
12package multi
23
34import (
You can’t perform that action at this time.
0 commit comments