From: Philippe Proulx Date: Thu, 20 Nov 2014 00:31:57 +0000 (-0500) Subject: utils/run.sh: use $(find ...) instead of `*/` X-Git-Url: https://git.efficios.com/?p=ctf-testsuite.git;a=commitdiff_plain;h=b8c57c12885378912f366372bd656fb28a3cea0e utils/run.sh: use $(find ...) instead of `*/` Signed-off-by: Philippe Proulx --- diff --git a/utils/run.sh b/utils/run.sh index 938cf60..c5a1db5 100755 --- a/utils/run.sh +++ b/utils/run.sh @@ -2,7 +2,7 @@ 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