summaryrefslogtreecommitdiffstats
path: root/t/gitolite-receive-pack
blob: a4cc5be3df4e94813358eabaa7ae2f11635d56d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;
print STDERR "TRACE: grp(", join( ")(", @ARGV ), ")\n";

my $repo = shift;
$repo =~ s/\.git$//;
my $user = $ENV{G3T_USER} || 'no-such-user';

$ENV{SSH_ORIGINAL_COMMAND} = "git-receive-pack '$repo'";
exec( "$ENV{GL_BINDIR}/../src/gitolite-shell", $user );