Skip to content

Commit

Permalink
Include hidden files when file processing
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikek committed Oct 24, 2023
1 parent 885fb31 commit 594589d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ESSArch_Core/fixity/action/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _convert(path, rootdir, tool, options, t=None, ip=None):
self.create_success_event(msg)

if tool.file_processing:
for path in iglob(rootdir + '/' + pattern, case_sensitive=False):
for path in iglob(rootdir + '/' + pattern, case_sensitive=False, include_hidden=True):
if not in_directory(path, rootdir):
raise ValueError('Invalid file-pattern accessing files outside of package')

Expand Down

0 comments on commit 594589d

Please sign in to comment.