You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If you are having problems with the `linkcheck` target, you might
the html and linkcheck targets share the same rule but do not specify the "builder". by default html is used. so if you run the linkcheck target as currently defined, it will run sphinx-build with the default html builder
the fix is to pass in the builder using the name of the matched target, using syntax that evaluates to -b html or -b linkcheck (as appropriate)
The text was updated successfully, but these errors were encountered:
see
crate-docs/src/rules.mk
Line 160 in e39edc6
the
html
andlinkcheck
targets share the same rule but do not specify the "builder". by defaulthtml
is used. so if you run thelinkcheck
target as currently defined, it will run sphinx-build with the defaulthtml
builderthe fix is to pass in the builder using the name of the matched target, using syntax that evaluates to
-b html
or-b linkcheck
(as appropriate)The text was updated successfully, but these errors were encountered: