From 252171c9a1fc8bd5cc053688483b743bab50b0b2 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Wed, 4 Nov 2009 23:41:09 +0100 Subject: [PATCH] Girocco::Project::_hooks_install(): Fix syntax error --- Girocco/Project.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Girocco/Project.pm b/Girocco/Project.pm index 4775fda..5a69969 100644 --- a/Girocco/Project.pm +++ b/Girocco/Project.pm @@ -224,7 +224,7 @@ sub _hook_install { sub _hooks_install { my $self = shift; - foreach my $hook ('post-receive' 'update') { + foreach my $hook ('post-receive', 'update') { $self->_hook_install($hook); } } -- 2.11.4.GIT