Skip to content

Commit

Permalink
remove invalid clap configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 28, 2020
1 parent 32e994c commit 665696f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plumbing/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mod options {
/// Verify the integrity of a pack or index file
#[structopt(setting = AppSettings::ColoredHelp)]
PackExplode {
#[structopt(long, requires("object_path"))]
#[structopt(long)]
/// Read written objects back and assert they match their source. Fail the operation otherwise.
///
/// Only relevant if an object directory is set.
Expand All @@ -54,7 +54,7 @@ mod options {
/// This helps to determine overhead related to compression. If unset, the sink will
/// only create hashes from bytes, which is usually limited by the speed at which input
/// can be obtained.
#[structopt(long, conflicts_with("object_path"))]
#[structopt(long)]
sink_compress: bool,

/// Display verbose messages and progress information
Expand Down
2 changes: 1 addition & 1 deletion tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* [x] progress
* [x] option to compress sink input too
* [x] unrelated: see if delta-decode buffer optimization can work easily
* [ ] --verify
* [x] --verify
* [ ] can the pack object also gain 'verify' capabilities, like the loose object? Reduce complexity in the pack-verify impl
* [ ] statistics

Expand Down

0 comments on commit 665696f

Please sign in to comment.