From 10ce7178c0d784db6de2a3f204ac462f0b5fbf43 Mon Sep 17 00:00:00 2001 From: David Randall Date: Sun, 7 Jun 2020 15:05:46 -0400 Subject: [PATCH] misc: Incorrect dependency path for dvyukov/go-fuzz Fix the dependency path for dvyukov/go-fuzz to github.com from golang.org. Fixes #601 --- misc/make-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/make-deps.sh b/misc/make-deps.sh index b2b7a878..77e8499e 100755 --- a/misc/make-deps.sh +++ b/misc/make-deps.sh @@ -128,7 +128,7 @@ go get golang.org/x/tools/cmd/stringer # for automatic stringer-ing go get golang.org/x/lint/golint # for `golint`-ing go get golang.org/x/tools/cmd/goimports # for fmt go get github.com/tmthrgd/go-bindata/go-bindata # for compiling in non golang files -go get golang.org/dvyukov/go-fuzz # for fuzzing the mcl lang bits +go get github.com/dvyukov/go-fuzz # for fuzzing the mcl lang bits if env | grep -q -e '^TRAVIS=true$' -e '^JENKINS_URL=' -e '^BUILD_TAG=jenkins'; then go get -u gopkg.in/alecthomas/gometalinter.v1 && mv "$(dirname $(command -v gometalinter.v1))/gometalinter.v1" "$(dirname $(command -v gometalinter.v1))/gometalinter" && gometalinter --install # bonus fi