golang version (eg: go version): go version go1.13.11 linux/amd64
Description:
I'm working on building mgmt and ran across an incorrect dependency path for go-fuzz. The organization should be github.com instead of golang.org.
diff --git a/misc/make-deps.sh b/misc/make-deps.sh
index b2b7a87..77e8499 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
Versions:
mgmt version (eg:
mgmt --version
): N/A (haven't built yet)operating system/distribution (eg:
uname -a
): Linux computer1 4.12.14-lp151.28.48-default #1 SMP Fri Apr 17 05:38:36 UTC 2020 (18849d1) x86_64 x86_64 x86_64 GNU/Linuxgolang version (eg:
go version
): go version go1.13.11 linux/amd64Description:
I'm working on building mgmt and ran across an incorrect dependency path for
go-fuzz
. The organization should begithub.com
instead ofgolang.org
.