Skip to content

Commit

Permalink
Use dep instead of glide to dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
tomohiro committed Jun 30, 2017
1 parent 94f76aa commit 65fdda6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -26,4 +26,4 @@ _testmain.go

# Vendoring
vendor
glide.lock
Gopkg.lock
7 changes: 7 additions & 0 deletions Gopkg.toml
@@ -0,0 +1,7 @@
[[constraint]]
name = "github.com/pkg/errors"
version = "0.7.1"

[[constraint]]
branch = "master"
name = "golang.org/x/oauth2"
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -15,10 +15,10 @@ test: deps

deps:
@echo "===> Installing runtime dependencies..."
glide install
dep ensure

updatedeps:
@echo "===> Updating runtime dependencies..."
glide update
dep ensure -update

.PHONY: help test deps updatedeps
8 changes: 0 additions & 8 deletions glide.yaml

This file was deleted.

0 comments on commit 65fdda6

Please sign in to comment.