|
From: <sv...@va...> - 2011-07-30 11:31:46
|
Author: bart
Date: 2011-07-30 12:26:57 +0100 (Sat, 30 Jul 2011)
New Revision: 11952
Log:
Nightly build: Rename the attachment diffs into diffs.txt such that it can be viewed easily with an e-mail client.
Modified:
trunk/nightly/bin/nightly
Modified: trunk/nightly/bin/nightly
===================================================================
--- trunk/nightly/bin/nightly 2011-07-30 09:35:56 UTC (rev 11951)
+++ trunk/nightly/bin/nightly 2011-07-30 11:26:57 UTC (rev 11952)
@@ -88,7 +88,7 @@
cd $DIR
# Clean up output files produced by a previous run.
-rm -rf diffs diff.short final new.short new.verbose old.short old.verbose
+rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
rm -rf sendmail.log unchanged.log valgrind-old valgrind-new
# Setup any relevant environment variables from conf/<tag>.conf.
@@ -230,8 +230,12 @@
done
fi
+# Rename diffs into diffs.txt such that it can be viewed easily with an
+# e-mail client.
+mv diffs diffs.txt
+
# Use the conf/<tag>.sendmail script to email the results.
conf/$TAG.sendmail \
"$changed_str$START nightly build ($TAG, $ABT_DETAILS)" \
final \
- diffs > sendmail.log 2>&1
+ diffs.txt > sendmail.log 2>&1
|