From: Vincent Pit Date: Tue, 7 Oct 2008 15:31:28 +0000 (+0200) Subject: git-gui should be executed once X-Git-Tag: v0.04~15 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=commitdiff_plain;h=876aec5a45915d4fe3b4229787c3aa3e6b56f542 git-gui should be executed once --- diff --git a/bin/rgit b/bin/rgit index 6531094..6a56df7 100755 --- a/bin/rgit +++ b/bin/rgit @@ -96,7 +96,7 @@ C<^^> with a bare C<^>. =back -There are actually a few commands that are only executed once in the current directory : C, C, C and C. +There are actually a few commands that are only executed once in the current directory : C, C, C, C and C. For any of those, no format substitution is done. You can specify which C executable to use with the C environment variable. diff --git a/lib/App/Rgit/Command.pm b/lib/App/Rgit/Command.pm index 42bd1f7..026c73a 100644 --- a/lib/App/Rgit/Command.pm +++ b/lib/App/Rgit/Command.pm @@ -36,7 +36,7 @@ Creates a new command object for C<$cmd> that is bound to be called with argumen =cut my %commands; -__PACKAGE__->action($_ => 'Once') for qw/version help daemon init/, ' '; +__PACKAGE__->action($_ => 'Once') for qw/daemon gui help init version/, ' '; sub new { my ($class, %args) = &validate;