X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=bin%2Frgit;h=2b8a212f7bf52d83218b52b9c71675b57e6931a1;hb=3ff07b59ff41754a77105973a4f1e9d6d25b2c3a;hp=98510c2879ab92f7565abe3332f3952552a179b2;hpb=511d4fe4b46173353cd1fdcac0d26ac067868280;p=perl%2Fmodules%2Frgit.git diff --git a/bin/rgit b/bin/rgit index 98510c2..2b8a212 100755 --- a/bin/rgit +++ b/bin/rgit @@ -3,10 +3,9 @@ use strict; use warnings; -use Carp qw/croak/; -use Config qw/%Config/; -use Cwd qw/cwd/; -use File::Spec (); # catfile, path +use Carp qw/croak/; +use Config qw/%Config/; +use Cwd qw/cwd/; use App::Rgit; use App::Rgit::Utils qw/:levels/; @@ -14,7 +13,7 @@ use App::Rgit::Policy; our $VERSION; BEGIN { - $VERSION = '0.06'; + $VERSION = '0.07'; } my %opts; @@ -44,24 +43,9 @@ if (not defined $policy) { setpgrp 0, 0 if $Config{d_setpgrp}; -my $git = $ENV{GIT_EXEC_PATH}; -unless (defined $git) { - for (File::Spec->path) { - my $g = File::Spec->catfile($_, 'git'); - if (-x $g) { - $git = $g; - last; - } - } -} -croak "Couldn't find any valid git executable" unless defined $git; - -my $root = $ENV{GIT_DIR}; -$root = cwd unless defined $root; - my $ar = App::Rgit->new( - git => $git, - root => $root, + git => undef, # Autodiscovery + root => undef, # Autodiscovery cmd => $cmd, args => \@ARGV, policy => $policy, @@ -80,7 +64,7 @@ rgit - Recursively execute a command on all the git repositories in a directory =head1 VERSION -Version 0.06 +Version 0.07 =head1 SYNOPSIS