Skip to content

Commit

Permalink
allow directroy-only + depth, fix #747
Browse files Browse the repository at this point in the history
  • Loading branch information
nim65s authored and zwpaper committed Sep 28, 2024
1 parent 5b104dc commit e0e8c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pub struct Cli {
pub depth: Option<usize>,

/// Display directories themselves, and not their contents (recursively when used with --tree)
#[arg(short, long, conflicts_with_all = ["depth", "recursive"])]
#[arg(short, long, conflicts_with = "recursive")]
pub directory_only: bool,

/// How to display permissions [default: rwx for linux, attributes for windows]
Expand Down

0 comments on commit e0e8c0e

Please sign in to comment.