Skip to content

Commit a52fc7f

Browse files
committed
Make disambiguation required
1 parent 9f249d8 commit a52fc7f

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
@@ -151,7 +151,6 @@ my $coffee-exe = './highlights/node_modules/coffee-script/bin/coffee'.IO.e??'./h
151151
sub MAIN(
152152
Bool :$typegraph = False,
153153
Int :$sparse,
154-
Bool :$disambiguation = True,
155154
Bool :$no-highlight = False,
156155
Int :$parallel = 1,
157156
) {
@@ -200,7 +199,7 @@ sub MAIN(
200199
write-type-source $_;
201200
}
202201

203-
write-disambiguation-files if $disambiguation;
202+
write-disambiguation-files;
204203
write-search-file;
205204
write-index-files;
206205

@@ -209,7 +208,7 @@ sub MAIN(
209208
}
210209

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

0 commit comments

Comments
 (0)