Replace bash-specific &> with portable equivalent.

This commit is contained in:
David Jones 2013-06-19 07:45:19 +01:00
parent 2470af64b4
commit ecc857a101

2
urchin
View File

@ -48,7 +48,7 @@ recurse() {
[ -f setup ] && [ -x setup ] && ./setup >> "$stdout_file"
# Run the test
./"$potential_test" &> "$stdout_file"
./"$potential_test" > "$stdout_file" 2>&1
exit_code="$?"
[ -f teardown ] && [ -x teardown ] && ./teardown >> "$stdout_file"