From 6bcae642a6a1f75f611150579527cb69b04c5710 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 8 Nov 2009 00:33:02 +0100 Subject: [PATCH] Girocco::Notify:get_commits(): rev-list --not -> rev-parse --not --- Girocco/Notify.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Girocco/Notify.pm b/Girocco/Notify.pm index c3e7bc7..e10d8ba 100644 --- a/Girocco/Notify.pm +++ b/Girocco/Notify.pm @@ -191,7 +191,7 @@ sub get_commits { my @revlims; if (@refs) { - open $fd, '-|', @gcmd, 'rev-list', '--not', @refs + open $fd, '-|', @gcmd, 'rev-parse', '--not', @refs or die "cannot do git rev-list for revlims: $! $?"; @revlims = <$fd>; chomp @revlims; -- 2.11.4.GIT