Skip to content

Commit

Permalink
Correct help text of current include
Browse files Browse the repository at this point in the history
  • Loading branch information
taoky committed Jan 29, 2024
1 parent 24d872a commit 2b9027d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Options:
--exclude <EXCLUDE>
Excluded file regex. Supports multiple
--include <INCLUDE>
Included file regex (even if excluded). Supports multiple
Included file regex (when it startswith any exclude regexes). Supports multiple
--skip-if-exists <SKIP_IF_EXISTS>
Skip file regex if they exist. Supports multiple
--compare-size-only <COMPARE_SIZE_ONLY>
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub struct SyncArgs {
#[clap(long, value_parser)]
exclude: Vec<ExpandedRegex>,

/// Included file regex (even if excluded). Supports multiple.
/// Included file regex (when it startswith any exclude regexes). Supports multiple.
#[clap(long, value_parser)]
include: Vec<ExpandedRegex>,

Expand Down

0 comments on commit 2b9027d

Please sign in to comment.