mirror of
https://github.com/TECHNOFAB11/dbmate.git
synced 2025-12-11 23:50:04 +01:00
Migrate to dep for dependency management (#26)
* Replace `Godeps` with `dep` * Upgrade all dependencies * Remove vendor source from git repository
This commit is contained in:
parent
fbddb76b84
commit
df119a76f3
126 changed files with 110 additions and 222303 deletions
6
Makefile
6
Makefile
|
|
@ -3,7 +3,11 @@ BUILD_FLAGS := -ldflags '-s'
|
|||
PACKAGES := ./cmd/... ./pkg/...
|
||||
|
||||
.PHONY: all
|
||||
all: install test lint build
|
||||
all: dep install test lint build
|
||||
|
||||
.PHONY: dep
|
||||
dep:
|
||||
dep ensure -vendor-only
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue