diff options
author | peter <peter@FreeBSD.org> | 1996-12-15 13:38:42 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-12-15 13:38:42 +0800 |
commit | fd0301b5759263604b034f605a0c5b7efc499ead (patch) | |
tree | c0c79d42db1d96758c7e51ebb1c9af733c72fe77 /CVSROOT | |
parent | ccc6cd8de6c1150651677f7674f45036230457f1 (diff) | |
download | freebsd-ports-gnome-fd0301b5759263604b034f605a0c5b7efc499ead.tar.gz freebsd-ports-gnome-fd0301b5759263604b034f605a0c5b7efc499ead.tar.zst freebsd-ports-gnome-fd0301b5759263604b034f605a0c5b7efc499ead.zip |
Don't send mail when somebody does a 'cvs add' on a directory. It's not
much use anyway and just makes people reluctant to use 'cvs add' even
though it's more appropriate than 'cvs import' in several cases.
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/log_accum.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index f3e29e9b77c0..f82b04dbade4 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# $Id: log_accum.pl,v 1.18 1996/02/16 18:53:12 peter Exp $ +# $Id: log_accum.pl,v 1.19 1996/03/11 19:43:10 peter Exp $ # # Perl filter to handle the log messages from the checkin of files in # a directory. This script will group the lists of files by log @@ -423,7 +423,8 @@ if ($ARGV[0] =~ /New directory/) { push(@text, ""); push(@text, " ".$ARGV[0]); &do_changes_file(@text); - &mail_notification(@text); + #&mail_notification(@text); + &cleanup_tmpfiles(1); exit 0; } |