mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 05:56:45 +01:00
9 lines
211 B
Bash
9 lines
211 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
TEST_DEPS=$(go list -f '{{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g')
|
|
if [ "$TEST_DEPS" ]; then
|
|
go get -race $TEST_DEPS
|
|
fi
|