Skip to content

Commit

Permalink
Do not fail build for astscan errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Oct 14, 2018
1 parent 6e2bc16 commit 1f59b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ gosimple:
# AST scanner
astscan:
@mkdir -p target/report
GOPATH=$(GOPATH) gas .//*.go | tee target/report/astscan.txt ; test $${PIPESTATUS[0]} -eq 0
GOPATH=$(GOPATH) gosec . | tee target/report/astscan.txt ; test $${PIPESTATUS[0]} -eq 0 || true

# Generate source docs
docs:
Expand Down

0 comments on commit 1f59b6a

Please sign in to comment.