mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 17:13:45 +00:00
8 lines
243 B
Bash
Executable file
8 lines
243 B
Bash
Executable file
#!/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
|