fix(server): make config loading same as scan (#1091)

* fix(server): make config loading same as scan

* also remove from report, tui
This commit is contained in:
Kota Kanbe
2020-12-15 04:33:14 +09:00
committed by GitHub
parent 43ed904db1
commit 514eb71482
4 changed files with 14 additions and 179 deletions

View File

@@ -29,6 +29,9 @@ all: build
build: ./cmd/vuls/main.go pretest fmt
$(GO) build -a -ldflags "$(LDFLAGS)" -o vuls ./cmd/vuls
b: ./cmd/vuls/main.go
$(GO) build -a -ldflags "$(LDFLAGS)" -o vuls ./cmd/vuls
install: ./cmd/vuls/main.go pretest fmt
$(GO) install -ldflags "$(LDFLAGS)" ./cmd/vuls