aboutsummaryrefslogtreecommitdiffstats
path: root/cook
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2009-12-06 14:01:45 +0100
committerBjörn Gustavsson <[email protected]>2009-12-06 14:01:45 +0100
commit5b4c201e794fd1cced21e8d54e83ae498e5372b6 (patch)
treeaeb7e8a20e8f566d3e8dab761762d661a820e693 /cook
parent0aa5a2767f4fe5aed65a289253b7eff1faf0d48c (diff)
downloadotp-5b4c201e794fd1cced21e8d54e83ae498e5372b6.tar.gz
otp-5b4c201e794fd1cced21e8d54e83ae498e5372b6.tar.bz2
otp-5b4c201e794fd1cced21e8d54e83ae498e5372b6.zip
page, cook: Include the OTP application(s)
For each topic, list the application(s) that is touched by the topic branch.
Diffstat (limited to 'cook')
-rwxr-xr-xcook8
1 files changed, 7 insertions, 1 deletions
diff --git a/cook b/cook
index 48041ceb8f..5ca1cf7e91 100755
--- a/cook
+++ b/cook
@@ -6,9 +6,11 @@ use File::Spec;
-d '.git' or die "$0: Not a Git repository";
my $root = dirname($0);
+my $application = "$root/application";
my $last = `(cd $root; git ls-files "whats" | tail -1)`;
@ARGV = ("$root/$last");
+
my $date;
my $output_file;
{
@@ -134,7 +136,11 @@ sub print_commits {
my(@revs) = `git rev-list $range`;
my $commits = @revs == 1 ? "1 commit" : scalar(@revs) . " commits";
my $max = 12;
- system qq[git show -s --date=short --format="* $topic (%ad) $commits" $topic];
+ my $diff_range = $range;
+ $diff_range =~ s/[.][.]/.../;
+ my $apps = `$application $diff_range`;
+ chomp $apps;
+ system qq[git show -s --date=short --format="* $topic ($apps) (%ad) $commits" $topic];
system qq[git --no-pager log -n $max --format=" - %s (%h)" $range];
print ".\n.\n\.\n" if @revs > $max;
}