updating how we get dev deps

This commit is contained in:
Dennis Coyle 2018-04-17 13:29:15 -04:00
parent 2f88365500
commit 7d9d0e940c
4 changed files with 6 additions and 12 deletions

View File

@ -14,4 +14,7 @@ lint:
proto:
@echo "Running ${@}"
./scripts/build-protos.sh
./scripts/build-protos.sh
build-dev-deps:
go get -u github.com/golang/protobuf/protoc-gen-go

View File

@ -45,9 +45,8 @@ In order to develop on storj, you will need to have the protobuf compiler instal
Use vgo to install both dev and non-dev dependencies
1. Install development dependencies
```bash
# shouldn't change your pwd
(cd ./dev && vgo install)
```
make build-dev-deps
```
1. Install project dependencies

View File

@ -1,3 +0,0 @@
module "storj.io/storj/dev"
require "github.com/golang/protobuf" v1.0.0

View File

@ -1,5 +0,0 @@
package main // import "storj.io/storj/dev"
import (
_ "github.com/golang/protobuf/protoc-gen-go"
)