mirror of
https://github.com/lxsang/silk.git
synced 2024-11-13 00:38:23 +01:00
use c API for some functions
All checks were successful
gitea-sync/silk/pipeline/head This commit looks good
All checks were successful
gitea-sync/silk/pipeline/head This commit looks good
This commit is contained in:
parent
b5cadaae5f
commit
afd9ffaa07
@ -42,11 +42,11 @@ end
|
||||
function std.extra_mime(name)
|
||||
local ext = utils.ext(name)
|
||||
local mpath = __ROOT__ .. "/" .. "mimes.json"
|
||||
if WWW_ROOT and not utils.file_exists(mpath) then
|
||||
if WWW_ROOT and not ulib.exists(mpath) then
|
||||
local mpath = WWW_ROOT .. "/" .. "mimes.json"
|
||||
end
|
||||
local xmimes = {}
|
||||
if utils.file_exists(mpath) then
|
||||
if ulib.exists(mpath) then
|
||||
xmimes = JSON.decodeFile(mpath)
|
||||
end
|
||||
if (name:find("Makefile$")) then
|
||||
|
Loading…
Reference in New Issue
Block a user