about summary refs log tree commit diff
path: root/compiler/rustc_driver/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2021-02-20 20:37:02 +0100
committerGitHub <noreply@github.com>2021-02-20 20:37:02 +0100
commit8c095619cbafa125b1625b417c8bec8e34f70bb4 (patch)
tree9590430400490f75775e4e96dd2bec3e51b61f55 /compiler/rustc_driver/src
parentc26a8bbd6d0e7bbfa2891934a1af2934cab3b6bb (diff)
parent9b9c5eaa5c17cd3d4e0e941b8215c4a7513dbc5e (diff)
downloadrust-8c095619cbafa125b1625b417c8bec8e34f70bb4.tar.gz
rust-8c095619cbafa125b1625b417c8bec8e34f70bb4.zip
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.
Diffstat (limited to 'compiler/rustc_driver/src')
-rw-r--r--compiler/rustc_driver/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs
index cad5a87bb13..0c4bcbf495a 100644
--- a/compiler/rustc_driver/src/lib.rs
+++ b/compiler/rustc_driver/src/lib.rs
@@ -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 {
         ""