Replace glide with dep

This commit is contained in:
Zaki Manian
2018-03-08 19:48:17 +00:00
committed by rigelrozanski
parent ce689ab4f3
commit 9afe696bf4
5 changed files with 16 additions and 9 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
all: install_glide check get_vendor_deps install
all: install_dep check get_vendor_deps install
########################################
### Glide
### DEP
DEP = github.com/golang/dep/cmd/dep
DEP_CHECK := $(shell command -v dep 2> /dev/null)
+2 -2
View File
@@ -1,10 +1,10 @@
package main
import (
// Include dependencies here so glide picks them up
// Include dependencies here so dep picks them up
// and installs sub-dependencies.
// TODO: Ideally this gets auto-imported on glide update.
// TODO: Ideally this gets auto-imported on dep update.
// Any way to make that happen?
_ "github.com/rigelrozanski/common"
)