docker-volume-backup/test/test.sh

16 lines
287 B
Bash
Executable File

#!/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