Skip to content

Commit e1e4d71

Browse files
committed
Make disambiguation required
1 parent 0bd781b commit e1e4d71

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

htmlify.p6

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ my $coffee-exe = './highlights/node_modules/coffee-script/bin/coffee';
150150
sub MAIN(
151151
Bool :$typegraph = False,
152152
Int :$sparse,
153-
Bool :$disambiguation = True,
154153
Bool :$no-highlight = False,
155154
Int :$parallel = 1,
156155
) {
@@ -199,7 +198,7 @@ sub MAIN(
199198
write-type-source $_;
200199
}
201200

202-
write-disambiguation-files if $disambiguation;
201+
write-disambiguation-files;
203202
write-search-file;
204203
write-index-files;
205204

@@ -208,7 +207,7 @@ sub MAIN(
208207
}
209208

210209
say 'Processing complete.';
211-
if $sparse || !$disambiguation {
210+
if $sparse {
212211
say "This is a sparse or incomplete run. DO NOT SYNC WITH doc.perl6.org!";
213212
}
214213

0 commit comments

Comments
 (0)