1
0
mirror of https://github.com/kepler155c/opus synced 2024-07-02 18:13:20 +00:00
opus/sys/apis/fs/gitfs.lua

20 lines
440 B
Lua
Raw Normal View History

2016-12-11 19:24:52 +00:00
local git = require('git')
local gitfs = { }
function gitfs.mount(dir, user, repo, branch)
if not user or not repo then
error('gitfs syntax: user, repo, [branch]')
end
local list = git.list(user, repo, branch)
2017-05-20 00:55:19 +00:00
for path, entry in pairs(list) do
2017-09-15 05:08:04 +00:00
if not fs.exists(fs.combine(dir, path)) then
local node = fs.mount(fs.combine(dir, path), 'urlfs', entry.url)
node.size = entry.size
end
2016-12-11 19:24:52 +00:00
end
end
return gitfs