Make test-network.sh more robust against arguments containing spaces

This commit is contained in:
teor (Tim Wilson-Brown) 2015-09-08 22:27:12 +10:00
parent 81e3deeb54
commit 6b118e1e1e

View File

@ -3,9 +3,9 @@
ECHO_N="/bin/echo -n"
use_coverage_binary=false
until [ -z $1 ]
until [ -z "$1" ]
do
case $1 in
case "$1" in
--chutney-path)
export CHUTNEY_PATH="$2"
shift