Skip to content

Commit

Permalink
just use system() rather than print ...
Browse files Browse the repository at this point in the history
  • Loading branch information
doy authored and rjbs committed Jun 24, 2010
1 parent 01b6db8 commit 4141b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Git/Megapull.pm
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ sub _clone_repo {
sub __do_cmd {
my ($self, $cmd) = @_;
print "$cmd\n";
print `$cmd`;
system("$cmd");
}
1;

0 comments on commit 4141b38

Please sign in to comment.