Skip to content
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.

Commit

Permalink
Problem: not all dependencies are installed.
Browse files Browse the repository at this point in the history
Solution: add missing dependencies.
  • Loading branch information
AlekSi committed Nov 6, 2018
1 parent aeb9199 commit 5a26050
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ all: test

init:
env GO111MODULE=on go mod vendor -v

# see tools.go
go install -v ./vendor/github.com/dvyukov/go-fuzz/go-fuzz \
./vendor/github.com/dvyukov/go-fuzz/go-fuzz-build \
./vendor/github.com/dvyukov/go-fuzz/go-fuzz-dep \
./vendor/golang.org/x/tools/cmd/stringer

curl https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.10.2

install:
Expand Down
1 change: 1 addition & 0 deletions tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ package main
import (
_ "github.com/dvyukov/go-fuzz/go-fuzz"
_ "github.com/dvyukov/go-fuzz/go-fuzz-build"
_ "github.com/dvyukov/go-fuzz/go-fuzz-dep"
_ "golang.org/x/tools/cmd/stringer"
)

0 comments on commit 5a26050

Please sign in to comment.