diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2014-05-02 12:37:20 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2014-05-02 12:37:20 -0400 |
commit | 3e7dac9dadb4cb45d2a6771d208c920b667c289b (patch) | |
tree | 07b89a403f418ff3d1f535f8c74ace29254aa2b8 /qa/pull-tester | |
parent | 3e578aa9b981c5fdf6e429f20ab6e27dbaab62b9 (diff) |
stop bitcoind/bitcoin-cli processes that might have been left running
Diffstat (limited to 'qa/pull-tester')
-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 bbee92967d..d3356f736a 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 |