Fix: use Bash for all shell scripts
[ctf-testsuite.git] / tests / 1.8 / stress / stream / run.sh
index 78e3be05961cca3f2fa4d39080b7fdf257fa6120..6c7b91f2e9f09549324058c415c189dc6f5ebc85 100755 (executable)
@@ -1,6 +1,6 @@
-#!/bin/sh
+#!/bin/bash
 
-for dir in */; do
+for dir in $(find -mindepth 1 -maxdepth 1 -type d | sort); do
        echo "Running ${dir} tests"
        cd ${dir}
        ./run.sh
This page took 0.023412 seconds and 4 git commands to generate.