Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:victordomingos/Count-files.git
Browse files Browse the repository at this point in the history
  • Loading branch information
victordomingos committed Sep 8, 2018
2 parents 49b9c10 + fe356e6 commit 28e71f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion count_files/utils/file_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def is_hidden_file_or_dir return True, even if it has visible final file/folder.
return False
elif platform_name.startswith('linux'):
return bool('/.' in filepath)
elif platform_name.startswith('darwin'):
elif platform_name.startswith('darwin') or platform_name.startswith('ios'):
return bool('/.' in filepath)


Expand Down

0 comments on commit 28e71f3

Please sign in to comment.