1
1

- Put "Open MPI" in subject line so that it's easy to filter, even if

it's not going to the testing@open-mpi.org list (correspondingly
  remove the subject prefix from the testing@open-mpi.org list config)
- re-add a missing unlink() that was causing problems.

This commit was SVN r2517.
Этот коммит содержится в:
Jeff Squyres 2004-09-05 07:33:45 +00:00
родитель 38095191eb
Коммит 3615a2528a

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

@ -28,8 +28,8 @@ my $sha1_checksums = "sha1sums.txt";
my $max_log_len = 100;
# email subjects
my $success_subject = "Build success (\@version@)";
my $fail_subject = "=== BUILD FAILURE (\@version@) ===";
my $success_subject = "Open MPI: Build success (\@version@)";
my $fail_subject = "Open MPI: === BUILD FAILURE (\@version@) ===";
# max number of snapshots to keep downloaded
my $max_snapshots = 3;
@ -582,6 +582,7 @@ foreach my $dir (qw(downloads)) {
if ($url_arg) {
chdir("downloads");
unlink($latest_name);
do_command(1, "$download $url_arg/$latest_name");
test_abort("Could not download latest snapshot number -- aborting")
if (! -f $latest_name);