From 3a90baa8fe61e7422c73a91210611435c414d1d7 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 12 Aug 2015 18:24:39 -0700 Subject: [PATCH] Fix a testing script issue Thanks @aji ! --- client/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/test.sh b/client/test.sh index 12308f9..d082e7e 100755 --- a/client/test.sh +++ b/client/test.sh @@ -5,8 +5,8 @@ set -x for client in * do - if [ -d $client ] + if [ -d "$client" ] then - (cd $client && ./test.sh) + (cd "$client" && ./test.sh) fi done