Skip to content

Commit

Permalink
Added space in test command
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpalmer authored and garu committed Sep 28, 2011
1 parent 1ae6ccb commit 57c5667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/My/Builder/Darwin.pm
Expand Up @@ -55,8 +55,8 @@ sub build_bundle {
sub ACTION_test { sub ACTION_test {
my $self = shift; my $self = shift;
$self->build_bundle() if !( -e 'blib/script/SDLPerl' ); $self->build_bundle() if !( -e 'blib/script/SDLPerl' );
my $cmd = ($ENV{SDL_RELEASE_TESTING} ? 'blib/script/SDLPerl ' : $^X) my $cmd = ($ENV{SDL_RELEASE_TESTING} ? 'blib/script/SDLPerl' : $^X)
. getcwd() . '/Build test'; . ' ' . getcwd() . '/Build test';
if ( $ENV{SDL_PERL_TEST} ) { if ( $ENV{SDL_PERL_TEST} ) {
$self->Module::Build::ACTION_test; $self->Module::Build::ACTION_test;
$ENV{SDL_PERL_TEST} = 0; #unset it again $ENV{SDL_PERL_TEST} = 0; #unset it again
Expand Down

0 comments on commit 57c5667

Please sign in to comment.