From 036493b8c3605d1a0ec1b05ddac3848e777f4d96 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 8 Sep 2004 18:58:13 +0000 Subject: [PATCH] Make the error message say "FAILURE" (instead of "ERROR") to match what happens in the nightly build script This commit was SVN r2545. --- contrib/nightly/create_tarball.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/nightly/create_tarball.sh b/contrib/nightly/create_tarball.sh index d8de428f15..cbc6812ff9 100755 --- a/contrib/nightly/create_tarball.sh +++ b/contrib/nightly/create_tarball.sh @@ -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" }