Skip to content

Commit

Permalink
Rollup merge of rust-lang#82260 - ojeda:rustc-argfile, r=jyn514
Browse files Browse the repository at this point in the history
rustc: Show `@path` usage in stable

The feature was stabilized in rust-lang#66172, but the usage string was not updated to be shown.
  • Loading branch information
GuillaumeGomez authored Feb 19, 2021
2 parents e59fc76 + 9b9c5ea commit 347b269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,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 347b269

Please sign in to comment.