Skip to content

Commit

Permalink
rustc: Show @path usage in stable
Browse files Browse the repository at this point in the history
The feature was stabilized in #66172, but the usage string was not
updated to be shown.

Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
  • Loading branch information
ojeda committed Feb 18, 2021
1 parent c0b64d9 commit 9b9c5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_driver/src/lib.rs
Expand Up @@ -821,7 +821,7 @@ fn usage(verbose: bool, include_unstable_options: bool, nightly_build: bool) {
} else {
"\n --help -v Print the full set of options rustc accepts"
};
let at_path = if verbose && nightly_build {
let at_path = if verbose {
" @path Read newline separated options from `path`\n"
} else {
""
Expand Down

0 comments on commit 9b9c5ea

Please sign in to comment.