dependency.lua

Sun, 19 Jul 2020 11:17:28 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Sun, 19 Jul 2020 11:17:28 -0500
changeset 33
55d738116fac
parent 7
038275cd92ed
permissions
-rw-r--r--

improve regex


--@module dependency

local dependency={}

lfs=require('lfs')

function dependency.simple_update_check(tgt, srcs)
    local a=lfs.attributes(tgt)
    if not a then
        return true
    end
    for _, src in ipairs(srcs) do
        local b=lfs.attributes(src)
        if not b or b.modification > a.modification then
            return true
        end
    end
    return false
end

return dependency

mercurial