1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00

fix neg ignore

This commit is contained in:
deadc0de6
2023-09-16 15:22:53 +02:00
committed by deadc0de
parent 4704569757
commit cdb9b7e983

View File

@@ -55,6 +55,9 @@ class Importer:
# patch ignore patterns
for ign in ignore:
if ign.startswith('!'):
self.ignore.append(ign)
continue
if ign.startswith('*/'):
self.ignore.append(ign)
continue