Skip to content

Commit 665696f

Browse files
committed
remove invalid clap configuration
1 parent 32e994c commit 665696f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: src/plumbing/pretty.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ mod options {
3030
/// Verify the integrity of a pack or index file
3131
#[structopt(setting = AppSettings::ColoredHelp)]
3232
PackExplode {
33-
#[structopt(long, requires("object_path"))]
33+
#[structopt(long)]
3434
/// Read written objects back and assert they match their source. Fail the operation otherwise.
3535
///
3636
/// Only relevant if an object directory is set.
@@ -54,7 +54,7 @@ mod options {
5454
/// This helps to determine overhead related to compression. If unset, the sink will
5555
/// only create hashes from bytes, which is usually limited by the speed at which input
5656
/// can be obtained.
57-
#[structopt(long, conflicts_with("object_path"))]
57+
#[structopt(long)]
5858
sink_compress: bool,
5959

6060
/// Display verbose messages and progress information

Diff for: tasks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* [x] progress
4242
* [x] option to compress sink input too
4343
* [x] unrelated: see if delta-decode buffer optimization can work easily
44-
* [ ] --verify
44+
* [x] --verify
4545
* [ ] can the pack object also gain 'verify' capabilities, like the loose object? Reduce complexity in the pack-verify impl
4646
* [ ] statistics
4747

0 commit comments

Comments
 (0)