1
1

Make the error message say "FAILURE" (instead of "ERROR") to match

what happens in the nightly build script

This commit was SVN r2545.
Этот коммит содержится в:
Jeff Squyres 2004-09-08 18:58:13 +00:00
родитель 111286d455
Коммит 036493b8c3

Просмотреть файл

@ -57,9 +57,9 @@ send_error_mail() {
fi
done
if test -n "$version"; then
Mail -s "=== CREATE ERROR ($version) ===" "$email" < "$outfile"
Mail -s "=== CREATE FAILURE ($version) ===" "$email" < "$outfile"
else
Mail -s "=== CREATE ERROR ===" "$email" < "$outfile"
Mail -s "=== CREATE FAILURE ===" "$email" < "$outfile"
fi
rm -f "$outfile"
}