aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-12-22 03:34:48 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-12-22 03:34:48 +0800
commitf7ec759ef03ac900f129536a1c101050b3623127 (patch)
treea717d6ea982832419485bc2ea88a2f8c52f011ab /.travis.yml
parent7ddebd7a7593a00b80757f3239f32099755405ca (diff)
downloadgo-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar
go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.gz
go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.bz2
go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.lz
go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.xz
go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.zst
go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.zip
inline dependency installation script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index cffd864ab..3f12f15b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,7 @@ install:
# - go get golang.org/x/tools/cmd/vet
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
- go get github.com/mattn/goveralls
- - ./install_deps.sh
+ - ETH_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 [ "$ETH_DEPS" ]; then go get $ETH_DEPS; fi
before_script:
- gofmt -l -w .
- goimports -l -w .