diff options
author | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2011-07-30 11:26:57 +0000 |
---|---|---|
committer | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2011-07-30 11:26:57 +0000 |
commit | 72e40630db85e570cf82bd73c7ddf10c1563ef64 (patch) | |
tree | fb660953b4ecd5b5d751dd200757e01eb32246de /nightly | |
parent | d378eaae99616b3d4d6c85d0e5839e5b9cd85dd3 (diff) |
Nightly build: Rename the attachment diffs into diffs.txt such that it can be viewed easily with an e-mail client.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11952 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'nightly')
-rwxr-xr-x | nightly/bin/nightly | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nightly/bin/nightly b/nightly/bin/nightly index fdfe02ea..fffe79db 100755 --- a/nightly/bin/nightly +++ b/nightly/bin/nightly @@ -88,7 +88,7 @@ svn_new_date=`date $svn_date_format` 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 @@ else 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 |