Skip to content

Commit

Permalink
switch from glide to godep
Browse files Browse the repository at this point in the history
glide generates the vendor directory with git sub repositories, which
makes a lot of sense, however this results in the files not being
included on a clone without a sub update.  going back to the oldskool
method here, sigh.
  • Loading branch information
mroth committed Mar 3, 2016
1 parent 2242f5b commit bb856c1
Show file tree
Hide file tree
Showing 67 changed files with 7,714 additions and 9 deletions.
20 changes: 20 additions & 0 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Godeps/Readme

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
.PHONY: build_deps build goinstall gouninstall package_deps package clobber
.DEFAULT_GOAL := build

vendor:
@type glide >/dev/null 2>&1 || \
{ echo >&2 "I require glide but it is not installed. Aborting."; exit 1; }
glide install

build_deps:
@type go >/dev/null 2>&1 || \
{ echo >&2 "I require go but it is not installed. Aborting."; exit 1; }

build: vendor build_deps
build: build_deps
go build -o bin/slacknimate


Expand Down
1 change: 0 additions & 1 deletion vendor/github.com/codegangsta/cli
Submodule cli deleted from 5db741
19 changes: 19 additions & 0 deletions vendor/github.com/codegangsta/cli/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/github.com/codegangsta/cli/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bb856c1

Please sign in to comment.