1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
This commit is contained in:
Xuan Sang LE 2018-08-23 15:50:55 +02:00
parent dc9e9a85d6
commit 30762988cf
2 changed files with 4 additions and 1 deletions

View File

@ -4,7 +4,7 @@ copyfiles = index.ls style.css router.lua models views controllers logs
main:
- mkdir $(BUILDDIR)
cp -rf $(copyfiles) $(BUILDDIR)
- cp -rf $(copyfiles) $(BUILDDIR)
- cd $(BUILDDIR) && ln -s ../grs ./rst
clean:
rm -rf $(BUILDDIR)/*

View File

@ -45,3 +45,6 @@ function IndexController:notoc(...)
return self:index(table.unpack({...}))
end
function IndexController:actionnotfound(...)
return self:notoc(table.unpack({...}))
end