Skip to content

Commit

Permalink
Unreverse Include/Exclude (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
Helvio88 authored Sep 23, 2024
1 parent d8c9a58 commit b56213c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ var (
)

type arguments struct {
Exclude []string `arg:"-n,--include" help:"only include URLs with PERL Regular Expressions support"`
Include []string `arg:"-x,--exclude" help:"exclude URLs with PERL Regular Expressions support"`
Include []string `arg:"-n,--include" help:"only include URLs with PERL Regular Expressions support"`
Exclude []string `arg:"-x,--exclude" help:"exclude URLs with PERL Regular Expressions support"`
Output string `arg:"-o,--output" help:"output directory to write files to"`
URLs []string `arg:"positional"`

Expand Down

0 comments on commit b56213c

Please sign in to comment.