Remove iterate over ls

This commit is contained in:
augustin64 2022-05-14 17:05:13 +02:00
parent 281c776ae2
commit f0dda69d9d

View File

@ -59,7 +59,7 @@ if [[ $1 == "test" ]]; then
elif [[ $2 == "run" ]]; then
$0 build test
mkdir -p .test-cache
for i in $(ls "$OUT/test_"*); do
for i in "$OUT/test_"*; do
echo "--- $i ---"
$i
done