don't use /dev/stderr

This commit is contained in:
Thomas Levine 2016-04-04 21:37:47 +00:00
parent 16988c48a9
commit d67185ce25
1 changed files with 3 additions and 3 deletions

6
urchin
View File

@ -311,7 +311,7 @@ recurse() {
done < "${shell_list}"
wait
else
echo "${potential_test}: Neither file nor directory!?" > /dev/stderr
echo "${potential_test}: Neither file nor directory!?" >&2
fi
else
# Shell is ''
@ -588,7 +588,7 @@ main() {
validate_strings "${shell_for_sh_tests}" 'Shell paths'
if echo "${shell_for_sh_tests}" | grep -q \ ; then
echo "Warning: It is best if shell paths contain no spaces so that
you don't need to quote the TEST_SHELL variable." > /dev/stderr
you don't need to quote the TEST_SHELL variable." >&2
fi
echo "${shell_for_sh_tests}" >> "${shell_list}"
@ -696,7 +696,7 @@ main() {
finish=$(date +%s)
if test $(cat "${urchin_tmp}"/log | wc -l) -eq 0; then
echo 'No tests found' > /dev/stderr
echo 'No tests found' >&2
urchin_exit 1
fi