Fix: run.sh for empty directory
[ctf-testsuite.git] / tests / 1.8 / run.sh
index 78e3be05961cca3f2fa4d39080b7fdf257fa6120..d535ef1cb2327561891ccb320694102f1f19a1dc 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-for dir in */; do
+for dir in $(find -mindepth 1 -maxdepth 1 -type d); do
        echo "Running ${dir} tests"
        cd ${dir}
        ./run.sh
This page took 0.023174 seconds and 4 git commands to generate.