File tree 4 files changed +12
-36
lines changed
4 files changed +12
-36
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ go get github.com/raintank/statsdaemon/cmd/statsdaemon
104
104
Building
105
105
========
106
106
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.
108
108
109
109
Command Line Options
110
110
====================
Original file line number Diff line number Diff line change 13
13
- scripts/package.sh
14
14
dependencies :
15
15
override :
16
- - scripts/depends .sh
16
+ - scripts/vendor_health .sh
17
17
- scripts/build.sh
18
18
- scripts/build_docker.sh
19
19
general :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments