Skip to content

Commit 8c09561

Browse files
Rollup merge of #82260 - ojeda:rustc-argfile, r=jyn514
rustc: Show `@path` usage in stable The feature was stabilized in #66172, but the usage string was not updated to be shown.
2 parents c26a8bb + 9b9c5ea commit 8c09561

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
@@ -813,7 +813,7 @@ fn usage(verbose: bool, include_unstable_options: bool, nightly_build: bool) {
813813
} else {
814814
"\n --help -v Print the full set of options rustc accepts"
815815
};
816-
let at_path = if verbose && nightly_build {
816+
let at_path = if verbose {
817817
" @path Read newline separated options from `path`\n"
818818
} else {
819819
""

0 commit comments

Comments
 (0)