Skip to content
Snippets Groups Projects
Unverified Commit d43f0c35 authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

make: add glide install

parent 2fac2270
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,20 @@ vet:
@echo "Running go vet."
@go vet ${PACKAGES_NOVENDOR}
### Building code
### Dependency amanagement for github.com/eris-ltd/eris-db
# erase vendor wipes the full vendor directory
.PHONY: erase_vendor
erase_vendor:
rm -rf vendor/
# install vendor uses glide to install vendored dependencies
.PHONY: install_vendor
install_vendor:
go get github.com/Masterminds/glide
glide install
### Building github.com/eris-ltd/eris-db
# build all targets in github.com/eris-ltd/eris-db
.PHONY: build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment