forked from izaya/OC-PsychOS2
Skye M
56af6d1ade
* Made finddesc.lua execute commands using `sh -c 'command'`, which ensures that Unix-like shell is used instead of cmd.exe * Made finddesc.lua avoid a situation where it would end up with a double '/' in `outpath` * Redirect output of deleting the document to null to avoid pointless "No such file or directory" errors.
15 lines
590 B
Bash
Executable File
15 lines
590 B
Bash
Executable File
#!/bin/bash
|
|
LUA=${LUA:-lua}
|
|
rm -r target/*
|
|
mkdir -p target/doc &>/dev/null
|
|
$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/
|
|
rm target/version.lua
|
|
rm -r doc/ &>/dev/null
|
|
$LUA finddesc.lua doc/ $(find lib/ module/ -type f|sort)
|
|
$LUA gendoc.lua target/doc/kernel.dict $(find module/ -type f|sort)
|
|
pandoc doc/apidoc.md docs-metadata.yml --template=template.tex -o doc/apidoc.pdf
|