changed scripts to use godep

This commit is contained in:
Nan Monnand Deng
2014-08-12 12:08:19 -04:00
parent 67f0737ec0
commit eb462eba06
3 changed files with 4 additions and 2 deletions

View File

@@ -25,9 +25,11 @@ find_test_dirs() {
find . -not \( \
\( \
-wholename './third_party' \
-wholename './Godeps' \
-o -wholename './release' \
-o -wholename './target' \
-o -wholename '*/third_party/*' \
-o -wholename '*/Godeps/*' \
-o -wholename '*/output/*' \
\) -prune \
\) -name '*_test.go' -print0 | xargs -0n1 dirname | sort -u | xargs -n1 printf "${KUBE_GO_PACKAGE}/%s\n"