summaryrefslogtreecommitdiffhomepage
path: root/libs/core
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-09-15 16:49:56 +0000
committerSteven Barth <steven@midlink.org>2008-09-15 16:49:56 +0000
commit22c927621c18e384f3f79e53aedda53271d52de2 (patch)
tree7363c508763f2efb0b2bb726f2e2dfa20e7c776e /libs/core
parent25263f014408448f3f153d9a62ab3d1de4b17660 (diff)
Optimized caching behaviour, automatically flush caches in dev environment
Diffstat (limited to 'libs/core')
-rw-r--r--libs/core/luasrc/ccache.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/core/luasrc/ccache.lua b/libs/core/luasrc/ccache.lua
index 437d38525..83e82d9fd 100644
--- a/libs/core/luasrc/ccache.lua
+++ b/libs/core/luasrc/ccache.lua
@@ -32,7 +32,7 @@ function cache_ondemand(...)
end
function cache_enable(cachepath, mode)
- cachepath = cachepath or "/tmp/.luciccache"
+ cachepath = cachepath or "/tmp/luci-modulecache"
mode = mode or "r--r--r--"
local loader = package.loaders[2]