diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-12-22 04:54:51 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-12-22 04:54:51 +0800 |
commit | 4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2 (patch) | |
tree | 03999dbaae12f77403eef52e074ec71cd4ac5b40 /install_deps.sh | |
parent | 43bf3b4a783e53e5954d9aa19b1423dbfed85029 (diff) | |
download | go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.tar go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.tar.gz go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.tar.bz2 go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.tar.lz go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.tar.xz go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.tar.zst go-tangerine-4fd4facf35dc8a2f273fd5e4acacf5c62baa0de2.zip |
Remove old file
Diffstat (limited to 'install_deps.sh')
-rwxr-xr-x | install_deps.sh | 8 |
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 |