aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-16 09:11:43 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-16 09:11:43 +0800
commit790ded0f4743d02606d96a5febffb0907104de23 (patch)
tree7cf376a45c5901233cd4345d267de4039690b0e1 /travis.sh
parent6dbd7a9a803ac784aa80972f75fa4f6aab9418ad (diff)
downloaddexon-790ded0f4743d02606d96a5febffb0907104de23.tar.gz
dexon-790ded0f4743d02606d96a5febffb0907104de23.tar.zst
dexon-790ded0f4743d02606d96a5febffb0907104de23.zip
Update travis deps script
Diffstat (limited to 'travis.sh')
-rw-r--r--travis.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh
index 7de52bc3e..73a313324 100644
--- a/travis.sh
+++ b/travis.sh
@@ -2,7 +2,7 @@
set -e
-TEST_DEPS=$(go list -f '{{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g')
+TEST_DEPS=$(go list -f '{{.Imports}} {{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g')
if [ "$TEST_DEPS" ]; then
go get -race $TEST_DEPS
fi