Skip to content

Commit

Permalink
fixed inflate command class precedence
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 17, 2012
1 parent 9940a7d commit 390b4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mojolicious/Command/inflate.pm
Expand Up @@ -14,7 +14,7 @@ sub run {
my $all = {};
my $app = $self->app;
for my $class (@{$app->renderer->classes}, @{$app->static->classes}) {
$all = {%$all, %{$self->get_all_data($class)}};
$all = {%{$self->get_all_data($class)}, %$all};
}

# Turn them into real files
Expand Down

0 comments on commit 390b4f9

Please sign in to comment.