mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 22:35:50 +01:00
Use full path on dep test (#6)
Previously, dep was being reinstalled every time because the check for it wouldn't find it on $PATH.
This commit is contained in:
parent
78f02465e2
commit
acec670354
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -12,7 +12,7 @@ install: deps
|
|||
go install ./...
|
||||
|
||||
deps:
|
||||
command -v dep >/dev/null || go get -u github.com/golang/dep/cmd/dep
|
||||
command -v $(GOPATH)/bin/dep >/dev/null || go get -u github.com/golang/dep/cmd/dep
|
||||
$(GOPATH)/bin/dep ensure
|
||||
|
||||
test: build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue