diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-12-22 03:34:48 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-12-22 03:34:48 +0800 |
commit | f7ec759ef03ac900f129536a1c101050b3623127 (patch) | |
tree | a717d6ea982832419485bc2ea88a2f8c52f011ab /.travis.yml | |
parent | 7ddebd7a7593a00b80757f3239f32099755405ca (diff) | |
download | go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.gz go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.tar.zst go-tangerine-f7ec759ef03ac900f129536a1c101050b3623127.zip |
inline dependency installation script
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
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 . |