diff options
| author | Gavin Andresen <[email protected]> | 2014-05-02 12:37:20 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-05-02 12:37:20 -0400 |
| commit | 3e7dac9dadb4cb45d2a6771d208c920b667c289b (patch) | |
| tree | 07b89a403f418ff3d1f535f8c74ace29254aa2b8 | |
| parent | Merge pull request #4114 (diff) | |
| download | discoin-3e7dac9dadb4cb45d2a6771d208c920b667c289b.tar.xz discoin-3e7dac9dadb4cb45d2a6771d208c920b667c289b.zip | |
stop bitcoind/bitcoin-cli processes that might have been left running
| -rwxr-xr-x | qa/pull-tester/pull-tester.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qa/pull-tester/pull-tester.sh b/qa/pull-tester/pull-tester.sh index bbee92967..d3356f736 100755 --- a/qa/pull-tester/pull-tester.sh +++ b/qa/pull-tester/pull-tester.sh @@ -11,6 +11,9 @@ if [ $# -lt 1 ]; then echo "usage: $0 [bitcoin srcroot] build-test arguments..." fi +killall -q bitcoin-cli +killall -q bitcoind + cd $1 shift |