Skip to content

Commit

Permalink
Fix mispelt variabled name. Should have run the tests, dummy.
Browse files Browse the repository at this point in the history
  • Loading branch information
thaljef committed Mar 24, 2015
1 parent c04b1b8 commit 9c97680
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions lib/App/Pinto/Command/look.pm
Expand Up @@ -70,7 +70,7 @@ __END__
=head1 SYNOPSIS
pinto --root=REPOSITORY_ROOT look TARGET ...
pinto --root=REPOSITORY_ROOT look [OPTIONS] TARGET ...
=head1 DESCRIPTION
Expand Down Expand Up @@ -115,9 +115,8 @@ the C<--stack> option has no effect.
=item C<PINTO_SHELL>
Sets the path to the command Pinto will use for interactive shells (like with the
L<look|App::Pinto::Commmand::look> command). If this is not set, Pinto defaults
to either C<SHELL> or C<COMSPEC>.
Sets the path to the command Pinto will use for the interactive shell. If
this is not set, Pinto defaults to either C<SHELL> or C<COMSPEC>.
=back
Expand Down
4 changes: 2 additions & 2 deletions lib/Pinto/Constants.pm
Expand Up @@ -58,7 +58,7 @@ Readonly our @EXPORT_OK => qw(
@PINTO_PREREQ_PHASES
@PINTO_PREREQ_RELATIONS
@PINTO_ENVIRONMENT_VARIRABLES
@PINTO_ENVIRONMENT_VARIABLES
);

Readonly our %EXPORT_TAGS => (
Expand Down Expand Up @@ -153,7 +153,7 @@ Readonly our @PINTO_PREREQ_RELATIONS => qw(requires suggests recommends);

#------------------------------------------------------------------------------

Readonly our @PINTO_ENVIRONMENT_VARIRABLES => qw(
Readonly our @PINTO_ENVIRONMENT_VARIABLES => qw(
PINTO_AUTHOR_ID
PINTO_DEBUG
PINTO_DIFF_STYLE
Expand Down
2 changes: 1 addition & 1 deletion t/lib/Pinto/Tester.pm
Expand Up @@ -33,7 +33,7 @@ extends qw(Test::Builder::Module);
BEGIN {

# Clear any user settings
delete @ENV{@PINTO_ENVIRONMENT_VARS};
delete @ENV{@PINTO_ENVIRONMENT_VARIABLES};

# So we don't prompt for commit messages
$Pinto::Globals::is_interactive = 0;
Expand Down

0 comments on commit 9c97680

Please sign in to comment.