aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2010-04-14 16:22:21 +0200
committerGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2010-04-14 16:22:21 +0200
commitee06edc646129bd1ab7f2c1ffe1fbfdf2e8290bf (patch)
tree25941a4d1c38bd6effb15c195d227fbd46976e5b /tools
parent25d1ee331dbe4977a4a1a756c67f32bd51d9b070 (diff)
downloadmonitoring-plugins-ee06edc646129bd1ab7f2c1ffe1fbfdf2e8290bf.tar.gz
git-notify: Fix the ordering of commits
If notifications for multiple commits are created, sort them chronologically instead of in reverse chronological order.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/git-notify2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/git-notify b/tools/git-notify
index 17093aab..088a5804 100755
--- a/tools/git-notify
+++ b/tools/git-notify
@@ -145,7 +145,7 @@ sub git_rev_list(@)
die "Cannot open pipe: $!" if not defined $pid;
if (!$pid)
{
- exec "git", "rev-list", @revlist_options, @args or die "Cannot execute rev-list: $!";
+ exec "git", "rev-list", "--reverse", @revlist_options, @args or die "Cannot execute rev-list: $!";
}
while (<REVLIST>)
{