Files
MuditaOS/scripts/lua/share/consts.lua
Mateusz Piesta 424f5eaa12 [MOS-855] Restore process update
Fixed issues with restoring from legacy backups
and cases when the database set fetched from backup package
is different than the system one.
2023-01-19 16:41:56 +01:00

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