Skip to content

Commit

Permalink
made non found nonfatal
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Dec 11, 2024
1 parent c58bfe0 commit 99ec828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions external/run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ function setupResultsDir() {
exit 1
else
echo "Already run tests in ${RESULTS_DIR} will be skipped:"
find "${RESULTS_DIR}" -type f | sort | grep -e "-\(PASSED\|ERROR\|FAILED\)"
find "${RESULTS_DIR}" -type f | sort | grep -e "-\(PASSED\|ERROR\|FAILED\)" || echo "none found"
echo "Non finished runs in ${RESULTS_DIR} will be rerun:"
find "${RESULTS_DIR}" -type f | sort | grep -ve "-\(PASSED\|ERROR\|FAILED\)"
find "${RESULTS_DIR}" -type f | sort | grep -ve "-\(PASSED\|ERROR\|FAILED\)" || echo "none found"
fi
else
rm -rf "${RESULTS_DIR}"
Expand Down

0 comments on commit 99ec828

Please sign in to comment.