Skip to content

Commit 9b9c5ea

Browse files
committed
rustc: Show @path usage in stable
The feature was stabilized in rust-lang#66172, but the usage string was not updated to be shown. Signed-off-by: Miguel Ojeda <[email protected]>
1 parent c0b64d9 commit 9b9c5ea

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_driver/src

1 file changed

+1
-1
lines changed

compiler/rustc_driver/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ fn usage(verbose: bool, include_unstable_options: bool, nightly_build: bool) {
821821
} else {
822822
"\n --help -v Print the full set of options rustc accepts"
823823
};
824-
let at_path = if verbose && nightly_build {
824+
let at_path = if verbose {
825825
" @path Read newline separated options from `path`\n"
826826
} else {
827827
""

0 commit comments

Comments
 (0)