Skip to content

Commit d4eecb7

Browse files
committed
doc updates
1 parent 41f78b5 commit d4eecb7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ os = $(word 1, $(temp))
1212
arch = $(word 2, $(temp))
1313
ext = $(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

1717
all: certgraph
1818

@@ -29,6 +29,11 @@ $(PLATFORMS): $(SOURCES)
2929
docker: 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+
3237
fmt:
3338
gofmt -s -w -l .
3439

driver/multi/multi_driver.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Package multi exposes a generic driver interface allowing you to merge the results of multiple other drivers
12
package multi
23

34
import (

0 commit comments

Comments
 (0)