Also ignore db -wal and -shm temp db files when signing
This commit is contained in:
parent
763e5f4ac0
commit
5642d0aae6
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ class ContentManager(object):
|
||||||
elif not self.isValidRelativePath(file_relative_path):
|
elif not self.isValidRelativePath(file_relative_path):
|
||||||
ignored = True
|
ignored = True
|
||||||
self.log.error("- [ERROR] Invalid filename: %s" % file_relative_path)
|
self.log.error("- [ERROR] Invalid filename: %s" % file_relative_path)
|
||||||
elif dir_inner_path == "" and file_relative_path == self.site.storage.getDbFile():
|
elif dir_inner_path == "" and self.site.storage.getDbFile() and file_relative_path.startswith(self.site.storage.getDbFile()):
|
||||||
ignored = True
|
ignored = True
|
||||||
elif optional_pattern and SafeRe.match(optional_pattern, file_relative_path):
|
elif optional_pattern and SafeRe.match(optional_pattern, file_relative_path):
|
||||||
optional = True
|
optional = True
|
||||||
|
|
Loading…
Reference in a new issue