Skip to content

Commit

Permalink
Force a message when compiling setting (colomon)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Feb 3, 2011
1 parent c6596ea commit 0451061
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/NieczaCompiler.pm6
Expand Up @@ -91,7 +91,9 @@ method !load_dependent($module) {
if !defined($newmod) || !self!up_to_date($newmod) {
$.unitcache{$module}:delete;
say "(Re)compilation needed" if $.verbose;
note "[auto-compiling setting]" if $module eq 'CORE';
self.compile_module($module);
note "[done]" if $module eq 'CORE';
$newmod = $.unitcache{$module} = $.backend.get_unit($module);
}

Expand Down

0 comments on commit 0451061

Please sign in to comment.