Skip to content

Commit c8844e9

Browse files
committed
update readme and qa scripts
1 parent 0c06e20 commit c8844e9

File tree

4 files changed

+12
-36
lines changed

4 files changed

+12
-36
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ go get github.com/raintank/statsdaemon/cmd/statsdaemon
104104
Building
105105
========
106106

107-
we use govendor to save the dependencies to the vendor directory.
107+
we use [dep](https://golang.github.io/dep/) to save the dependencies to the vendor directory.
108108

109109
Command Line Options
110110
====================

circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test:
1313
- scripts/package.sh
1414
dependencies:
1515
override:
16-
- scripts/depends.sh
16+
- scripts/vendor_health.sh
1717
- scripts/build.sh
1818
- scripts/build_docker.sh
1919
general:

scripts/depends.sh

-34
This file was deleted.

scripts/vendor_health.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -e
3+
4+
# checks whether vendor directory is healthy
5+
6+
go get -u github.com/golang/dep/cmd/dep
7+
8+
dep version
9+
dep status
10+
dep check

0 commit comments

Comments
 (0)