From 9bbc220641254c820c407a7cc81cb3a834660344 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Thu, 17 Sep 2015 15:45:14 +0200 Subject: [PATCH] fix rpc-tests.sh `${testScripts[@]}` now does split up `testscript --agument` in two elements pushed to the array (`testscript` and `--agument`). --- qa/pull-tester/rpc-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh index eb30517a0..057675bad 100755 --- a/qa/pull-tester/rpc-tests.sh +++ b/qa/pull-tester/rpc-tests.sh @@ -58,7 +58,7 @@ testScriptsExt=( ); if [ "x$ENABLE_ZMQ" = "x1" ]; then - testScripts=( ${testScripts[@]} 'zmq_test.py' ) + testScripts+=('zmq_test.py') fi extArg="-extended"