Skip to content

Commit

Permalink
clean-ignore: do not require additional arguments to be passed
Browse files Browse the repository at this point in the history
Signed-off-by: Elijah Newren <[email protected]>
  • Loading branch information
newren committed Jul 3, 2024
1 parent 4f30eee commit 5c54a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/filter-repo-demos/clean-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class CheckIgnores:

def main():
checker = CheckIgnores()
args = fr.FilteringOptions.parse_args(sys.argv[1:])
args = fr.FilteringOptions.parse_args(sys.argv[1:], error_on_empty = False)
filter = fr.RepoFilter(args, commit_callback=checker.skip_ignores)
filter.run()

Expand Down

0 comments on commit 5c54a53

Please sign in to comment.