Skip to content

Commit

Permalink
golang fuzzer: explicitly disable Go modules via GO111MODULE=off
Browse files Browse the repository at this point in the history
  • Loading branch information
thepudds authored Sep 15, 2019
1 parent 2f79af9 commit 6b92050
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions projects/golang/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Explicitly disable Go modules because (a) none of the packages at dvyukov/go-fuzz-corpus/... are modules,
# (b) dvyukov/go-fuzz will likely start respecting the GO111MODULE setting, and (c) the go command's
# default value for GO111MODULE is planned to be changed during Go 1.14 development cycle.
export GO111MODULE=off

function compile_fuzzer {
fuzzer=$(basename $1)

Expand Down

0 comments on commit 6b92050

Please sign in to comment.