|
@@ -230,6 +230,12 @@ sub send_commit_notice($$)
|
|
|
my %info = get_object_info($obj);
|
|
my %info = get_object_info($obj);
|
|
|
my @notice = ();
|
|
my @notice = ();
|
|
|
|
|
|
|
|
|
|
+ open DIFF, "-|" or exec "git", "diff-tree", "-p", "-M", "--no-commit-id", $obj or die "cannot exec git-diff-tree";
|
|
|
|
|
+ my $diff = join("", <DIFF>);
|
|
|
|
|
+ close DIFF;
|
|
|
|
|
+
|
|
|
|
|
+ return if length($diff) == 0;
|
|
|
|
|
+
|
|
|
push @notice,
|
|
push @notice,
|
|
|
"Module: $repos_name",
|
|
"Module: $repos_name",
|
|
|
"Branch: $ref",
|
|
"Branch: $ref",
|
|
@@ -247,10 +253,6 @@ sub send_commit_notice($$)
|
|
|
push @notice, join("", <STAT>);
|
|
push @notice, join("", <STAT>);
|
|
|
close STAT;
|
|
close STAT;
|
|
|
|
|
|
|
|
- open DIFF, "-|" or exec "git", "diff-tree", "-p", "-M", "--no-commit-id", $obj or die "cannot exec git-diff-tree";
|
|
|
|
|
- my $diff = join( "", <DIFF> );
|
|
|
|
|
- close DIFF;
|
|
|
|
|
-
|
|
|
|
|
if (($max_diff_size == -1) || (length($diff) < $max_diff_size))
|
|
if (($max_diff_size == -1) || (length($diff) < $max_diff_size))
|
|
|
{
|
|
{
|
|
|
push @notice, $diff;
|
|
push @notice, $diff;
|