aboutsummaryrefslogtreecommitdiffstats
path: root/install_deps.sh
diff options
context:
space:
mode:
authorJeffrey Wilcke <obscuren@users.noreply.github.com>2014-12-22 18:42:28 +0800
committerJeffrey Wilcke <obscuren@users.noreply.github.com>2014-12-22 18:42:28 +0800
commite531c6fc6cb9c54969a85eca6642561dff958a27 (patch)
tree03999dbaae12f77403eef52e074ec71cd4ac5b40 /install_deps.sh
parent795b14330ad4399ef292835eac452d258dcd7464 (diff)
parent4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2 (diff)
downloaddexon-e531c6fc6cb9c54969a85eca6642561dff958a27.tar
dexon-e531c6fc6cb9c54969a85eca6642561dff958a27.tar.gz
dexon-e531c6fc6cb9c54969a85eca6642561dff958a27.tar.bz2
dexon-e531c6fc6cb9c54969a85eca6642561dff958a27.tar.lz
dexon-e531c6fc6cb9c54969a85eca6642561dff958a27.tar.xz
dexon-e531c6fc6cb9c54969a85eca6642561dff958a27.tar.zst
dexon-e531c6fc6cb9c54969a85eca6642561dff958a27.zip
Merge pull request #217 from ethereum/tests
Updated code coverage support & cleanup
Diffstat (limited to 'install_deps.sh')
-rwxr-xr-xinstall_deps.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/install_deps.sh b/install_deps.sh
deleted file mode 100755
index 73a313324..000000000
--- a/install_deps.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-set -e
-
-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