Skip to content

Commit 83812de

Browse files
author
Charles-Antoine Mathieu
authored
Merge pull request src-d#192 from bodji/1.2.1
Migrate from godeps to govendor
2 parents 7bf2e62 + 4f4c25b commit 83812de

File tree

546 files changed

+10549
-12054
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

546 files changed

+10549
-12054
lines changed

Makefile

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,17 +247,23 @@ test:
247247
TEST=`go test ./... 2>&1`; \
248248
if [ $$? = 0 ] ; then echo "OK" ; else echo "$$TEST" | grep -v "no test files" | grep -v "^\[" && ERR="1"; fi ; \
249249
echo "go fmt $$directory : "; \
250-
for file in $$(find -name "*.go" | grep -v Godeps ); do \
250+
for file in $$(find -name "*.go" | grep -v vendor ); do \
251251
echo -n " - file $$file : " ; \
252252
FMT=`gofmt -l $$file` ; \
253253
if [ "$$FMT" = "" ] ; then echo "OK" ; else echo "FAIL" && ERR="1" ; fi ; \
254254
done; \
255255
echo -n "go vet $$directory : "; \
256-
VET=`go vet ./... 2>&1`; \
257-
if [ $$? = 0 ] ; then echo "OK" ; else echo "FAIL" && echo "$$VET" && ERR="1" ; fi ; \
258-
echo -n "go lint $$directory : "; \
259-
LINT=`golint ./...`; \
260-
if [ "$$LINT" = "" ] ; then echo "OK" ; else echo "FAIL" && echo "$$LINT" && ERR="1" ; fi ; \
256+
for file in $$(find -name "*.go" | grep -v vendor ); do \
257+
echo -n " - file $$file : " ; \
258+
FMT=`go vet $$file` ; \
259+
if [ "$$FMT" = "" ] ; then echo "OK" ; else echo "FAIL" && ERR="1" ; fi ; \
260+
done; \
261+
echo -n "golint $$directory : "; \
262+
for file in $$(find -name "*.go" | grep -v vendor ); do \
263+
echo -n " - file $$file : " ; \
264+
FMT=`golint $$file` ; \
265+
if [ "$$FMT" = "" ] ; then echo "OK" ; else echo "FAIL" && ERR="1" ; fi ; \
266+
done; \
261267
cd - 2>&1 > /dev/null; \
262268
done ; if [ "$$ERR" = "1" ] ; then exit 1 ; fi
263269
@echo "cli client integration tests :\n" && cd client && ./test.sh

client/Godeps/Godeps.json

Lines changed: 0 additions & 69 deletions
This file was deleted.

client/Godeps/Readme

Lines changed: 0 additions & 5 deletions
This file was deleted.

client/Godeps/_workspace/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

client/Godeps/_workspace/src/github.com/BurntSushi/toml/.gitignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

client/Godeps/_workspace/src/github.com/BurntSushi/toml/.travis.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

client/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

client/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go

Lines changed: 0 additions & 90 deletions
This file was deleted.

client/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

client/Godeps/_workspace/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go

Lines changed: 0 additions & 131 deletions
This file was deleted.

0 commit comments

Comments
 (0)