Fix: use Bash for all shell scripts
[ctf-testsuite.git] / utils / run.sh
index 938cf60bb291d4a66fa4e59d96ecbaf043aa7b43..60b967557465866213d15e1529eeec31d9bd01dc 100755 (executable)
@@ -1,8 +1,8 @@
-#!/bin/sh
+#!/bin/bash
 
 TEST_PROG="./test.sh"
 
-for t in */; do
+for t in $(find -mindepth 1 -maxdepth 1 -type d | sort); do
        if [ -n "${TEST_LIST}" ]; then
                TEST_LIST="${TEST_LIST}\n"
        fi
This page took 0.034768 seconds and 4 git commands to generate.