We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b3acce commit e51f210Copy full SHA for e51f210
justfile
@@ -119,7 +119,7 @@ update *extra_args:
119
doc: _doc
120
121
_doc $RUSTDOCFLAGS=("-D warnings " + rustdoc_extra_flags):
122
- {{cargo}} doc {{ if env('CI', '') != '' { '--no-deps' } else { '--open' } }} {{package_flag}} {{all_features_flag}} {{message_format_flag}}
+ {{cargo}} doc {{ if env('CI', '') == '' { '--open' } else { '' } }} {{ if toolchain == 'nightly' { '--no-deps' } else { '' } }} {{package_flag}} {{all_features_flag}} {{message_format_flag}}
123
124
# Check doc coverage with Nightly rustdoc
125
doc-coverage: _doc-coverage
0 commit comments