Compare commits
No commits in common. "405ee6408d220ea41697b2c61efeece28e24c026" and "d59cc53340b9558be3c7af7378f339e6e8ccbf50" have entirely different histories.
405ee6408d
...
d59cc53340
7
build.sh
7
build.sh
@ -1,11 +1,10 @@
|
||||
#!/bin/bash
|
||||
LUA=${LUA:-lua}
|
||||
#!/bin/sh
|
||||
rm -r target/*
|
||||
mkdir target &>/dev/null
|
||||
$LUA luapreproc.lua module/init.lua target/init.lua
|
||||
lua luapreproc.lua module/init.lua target/init.lua
|
||||
echo _OSVERSION=\"PsychOS 2.0a2-$(git rev-parse --short HEAD)\" > target/version.lua
|
||||
cat target/version.lua target/init.lua > target/tinit.lua
|
||||
mv target/tinit.lua target/init.lua
|
||||
cp -r service/ lib/ cfg/ target/
|
||||
$LUA finddesc.lua $(find module/ -type f) $(find lib/ -type f) > apidoc.md
|
||||
lua finddesc.lua $(find module/ -type f) $(find lib/ -type f) > apidoc.md
|
||||
rm target/version.lua
|
||||
|
@ -12,14 +12,14 @@ for _,file in pairs(tA) do
|
||||
for k,v in pairs(lines) do
|
||||
local name, args, desc = v:match("function%s+(.+)%s*%((.*)%)%s*%-%-%s*(.+)")
|
||||
if name and args and desc then
|
||||
docfiles[file][#docfiles[file]+1] = string.format("## %s(%s)\n%s\n",name,args,desc)
|
||||
docfiles[file][#docfiles[file]+1] = string.format("##%s(%s)\n%s",name,args,desc)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
for k,v in pairs(docfiles) do
|
||||
if #v > 0 then
|
||||
print("\n# "..k)
|
||||
print("#"..k)
|
||||
for l,m in pairs(v) do
|
||||
print(m)
|
||||
end
|
||||
|
@ -179,7 +179,6 @@ local env = {code = ""}
|
||||
setmetatable(env, {__index=_env})
|
||||
env:process(arg[1])
|
||||
local tmpfile = os.tmpname()
|
||||
if tmpfile:sub(#tmpfile) == "." then tmpfile = tmpfile:sub(1, #tmpfile - 1) end
|
||||
local tmpf = io.open(tmpfile, "wb")
|
||||
tmpf:write(env.code)
|
||||
tmpf:close()
|
||||
|
Loading…
Reference in New Issue
Block a user