From 9c171d166dced181787f22d3abbf1cce8075bb62 Mon Sep 17 00:00:00 2001 From: Teemu Matilainen Date: Thu, 28 Jan 2010 22:18:12 +0200 Subject: [PATCH] "expand" should print to SDTOUT instead of STDERR Other ssh commands where fixed in 15475f666c07e66d91fd00added2a50544d9221b, but "expand" was somehow missed. Signed-off-by: Teemu Matilainen --- src/gitolite.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gitolite.pm b/src/gitolite.pm index 74e1bbc..950ad5e 100644 --- a/src/gitolite.pm +++ b/src/gitolite.pm @@ -245,7 +245,7 @@ sub expand_wild # you need a minimum of "R" access to the regex we're talking about next unless $repos{$repo}{R}{'@all'} or $repos{$repo}{R}{$user}; - print STDERR "($creater)\t$actual_repo\n"; + print "($creater)\t$actual_repo\n"; } }