Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Second attempt to parallelize htmlify
dies with a type check failure, with find_method_fallback in the backtrace
  • Loading branch information
moritz committed Jan 24, 2015
1 parent cd56de3 commit 19d6b9b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions htmlify.p6
Expand Up @@ -145,9 +145,11 @@ sub MAIN(
write-index-files;

say 'Writing per-routine files ...';
for $*DR.lookup('routine', :by<kind>).unique(:as{.name}) -> $d {
write-routine-file($d.name);
print '.'
await do for $*DR.lookup('routine', :by<kind>).unique(:as{.name}) -> $d {
start {
write-routine-file($d.name);
print '.'
}
}
say '';

Expand Down

0 comments on commit 19d6b9b

Please sign in to comment.