ponyapi/client/test.sh

12 lines
106 B
Bash
Raw Normal View History

2015-08-13 01:22:56 +00:00
#!/bin/bash
set -e
for client in *
do
if [ -d "$client" ]
2015-08-13 01:22:56 +00:00
then
(cd "$client" && ./test.sh)
2015-08-13 01:22:56 +00:00
fi
done