From 5f9ed69299017d9f66c5469c9dd4c2456e60073d Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Sun, 2 May 2021 10:05:12 +0100 Subject: [PATCH] misc: Replace go-bindata with maintained fork As per [1] go-bindata was removed from GitHub and later replaced by the community. jteeuwen/go-bindata has since been archived to represent this state and now most communities use kevinburke/go-bindata instead as it is more actively maintained. [1]: https://github.com/jteeuwen/go-bindata/issues/5 Signed-off-by: Joe Groocock --- 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 bc31fff3..96a18e67 100755 --- a/misc/make-deps.sh +++ b/misc/make-deps.sh @@ -154,7 +154,7 @@ go get golang.org/x/tools/cmd/goyacc # formerly `go tool yacc` 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 github.com/kevinburke/go-bindata/go-bindata # for compiling in non golang files go get github.com/dvyukov/go-fuzz/go-fuzz # for fuzzing the mcl lang bits if in_ci; then go get -u gopkg.in/alecthomas/gometalinter.v1 && \