feat: integrate Bugtracker module, UpdateService enhancements & Token hierarchy
This commit is contained in:
+5
-3
@@ -17,7 +17,9 @@ IGNORE_PATTERNS = {
|
||||
'scripts',
|
||||
'.deploy_cache.json',
|
||||
'Serverdaten.txt',
|
||||
'Serverdaten.txt.bak'
|
||||
'Serverdaten.txt.bak',
|
||||
'bin',
|
||||
'obj'
|
||||
}
|
||||
|
||||
def load_config():
|
||||
@@ -65,9 +67,9 @@ def should_ignore(rel_path):
|
||||
parts = Path(rel_path).parts
|
||||
if not parts:
|
||||
return False
|
||||
if parts[0] in IGNORE_PATTERNS:
|
||||
return True
|
||||
for part in parts:
|
||||
if part in IGNORE_PATTERNS:
|
||||
return True
|
||||
if part == '.htaccess':
|
||||
continue
|
||||
if part.startswith('.'):
|
||||
|
||||
Reference in New Issue
Block a user