Fix a testing script issue

Thanks @aji !
This commit is contained in:
Christine Dodrill 2015-08-12 18:24:39 -07:00
parent b91fa9e030
commit 3a90baa8fe
1 changed files with 2 additions and 2 deletions

View File

@ -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