ponyapi/client/test.sh

13 lines
113 B
Bash
Executable File

#!/bin/bash
set -e
set -x
for client in *
do
if [ -d "$client" ]
then
(cd "$client" && ./test.sh)
fi
done