utils/run.sh: use $(find ...) instead of `*/`
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 20 Nov 2014 00:31:57 +0000 (19:31 -0500)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 20 Nov 2014 00:47:28 +0000 (19:47 -0500)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
utils/run.sh

index 938cf60bb291d4a66fa4e59d96ecbaf043aa7b43..c5a1db55edd30d25e26614bb87737f408c3db80f 100755 (executable)
@@ -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
This page took 0.02267 seconds and 4 git commands to generate.