fixtures/scripts/push-and-pull.sh in zold-0.9.9 vs fixtures/scripts/push-and-pull.sh in zold-0.9.10
- old
+ new
@@ -7,10 +7,10 @@
port=`python -c 'import socket; s=socket.socket(); s.bind(("", 0)); print(s.getsockname()[1]); s.close()'`
mkdir server
cd server
-zold --trace node --invoice=NOPREFIX@ffffffffffffffff \
+zold node --trace --invoice=NOPREFIX@ffffffffffffffff \
--host=localhost --port=${port} --bind-port=${port} \
--threads=0 --standalone &
pid=$!
trap "kill -9 $pid" EXIT
cd ..