1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00

[FIX] Simplify dep fetching (#1062)

* [FIX] Simplify dep fetching

* fix Makefile
This commit is contained in:
Evgeniy Kulikov 2018-02-11 18:30:38 +03:00 committed by Vishal Rana
parent 353564c797
commit e9f67801e3

View File

@ -1,5 +1,8 @@
DEP_VERSION=0.4.1
dependency:
go get -u github.com/golang/dep/cmd/dep
curl -fsSL -o ${GOPATH}/bin/dep https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64
chmod +x ${GOPATH}/bin/dep
dep ensure
test: