Skip to content

Commit 773e3b6

Browse files
committed
Auto merge of #5774 - dwijnand:generate-lockfile-stutter, r=alexcrichton
Drop after_help in generate-lockfile From reviewing the history this looks like a copy-paste error while porting to clap (#5152): this is fetch's after_help info Fixes #5692
2 parents c744090 + 7ef6976 commit 773e3b6

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/bin/cargo/commands/generate_lockfile.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,6 @@ pub fn cli() -> App {
66
subcommand("generate-lockfile")
77
.about("Generate the lockfile for a project")
88
.arg_manifest_path()
9-
.after_help(
10-
"\
11-
If a lockfile is available, this command will ensure that all of the git
12-
dependencies and/or registries dependencies are downloaded and locally
13-
available. The network is never touched after a `cargo fetch` unless
14-
the lockfile changes.
15-
16-
If the lockfile is not available, then this is the equivalent of
17-
`cargo generate-lockfile`. A lockfile is generated and dependencies are also
18-
all updated.
19-
",
20-
)
219
}
2210

2311
pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {

0 commit comments

Comments
 (0)