Skip to content

Commit

Permalink
Merge pull request #2 from vpmapelli/master
Browse files Browse the repository at this point in the history
fix: follow symlink when searching for cases
  • Loading branch information
FoamScience authored Oct 31, 2024
2 parents 649b715 + e6af15e commit be09d2a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Alltest
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,7 @@ done
cd "$root"

# get setup to run tests
#cases=$(find cases/ -maxdepth 1 -mindepth 1 -type d)
mapfile -t cases_array < <(find cases/ -maxdepth 1 -mindepth 1 -type d)
mapfile -t cases_array < <(find -L cases/ -maxdepth 1 -mindepth 1 -type d)
if [ ${#cases_array[@]} -eq 0 ]; then
echo "No cases found to run tests"
exit 1
Expand Down

0 comments on commit be09d2a

Please sign in to comment.