We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f78b5 commit d4eecb7Copy full SHA for d4eecb7
2 files changed
Makefile
@@ -12,7 +12,7 @@ os = $(word 1, $(temp))
12
arch = $(word 2, $(temp))
13
ext = $(shell if [ "$(os)" = "windows" ]; then echo ".exe"; fi)
14
15
-.PHONY: all release fmt clean serv $(PLATFORMS) docker check
+.PHONY: all release fmt clean serv $(PLATFORMS) docker check deps
16
17
all: certgraph
18
@@ -29,6 +29,11 @@ $(PLATFORMS): $(SOURCES)
29
docker: Dockerfile $(ALL_SOURCES)
30
docker build -t lanrat/certgraph .
31
32
+deps: go.mod
33
+ GOPROXY=direct go mod download
34
+ GOPROXY=direct go get -u all
35
+ go mod tidy
36
+
37
fmt:
38
gofmt -s -w -l .
39
driver/multi/multi_driver.go
@@ -1,3 +1,4 @@
1
+// Package multi exposes a generic driver interface allowing you to merge the results of multiple other drivers
2
package multi
3
4
import (
0 commit comments