Skip to content
Snippets Groups Projects
Commit aacb12b6 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Ignore hidden files

parent d9ebc03f
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,7 @@ def main(scandir, dry_run): ...@@ -68,6 +68,7 @@ def main(scandir, dry_run):
for (path, dirnames, filenames) in os.walk(sys.argv[1], followlinks=False): for (path, dirnames, filenames) in os.walk(sys.argv[1], followlinks=False):
for f in filenames: for f in filenames:
if f.startswith('.'): continue
if f.startswith('repodata.json'): continue if f.startswith('repodata.json'): continue
m = package_regex.match(f) m = package_regex.match(f)
if m is None: if m is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment