mirror of
https://github.com/mudita/MuditaOS.git
synced 2025-12-26 23:48:35 -05:00
Fixed issues with restoring from legacy backups and cases when the database set fetched from backup package is different than the system one.
13 lines
284 B
Lua
13 lines
284 B
Lua
local consts = {}
|
|
|
|
consts.version_file = "version.json"
|
|
consts.indexer_cache_file = ".directory_is_indexed"
|
|
|
|
local match = {}
|
|
|
|
-- Match only files with '.db' extensions and omit such files inside subdirectories
|
|
match.only_db_files = '^[^%/]*%.db$'
|
|
|
|
consts.match = match
|
|
return consts
|