docker-volume-backup/test/test.sh

16 lines
287 B
Bash
Raw Normal View History

2021-07-11 13:27:01 +02:00
#!/bin/sh
set -e
for dir in $(ls -d -- */); do
test="${dir}run.sh"
echo "################################################"
echo "Now running $test"
echo "################################################"
echo ""
/bin/sh $test
echo ""
echo "$test passed"
echo ""
done