summaryrefslogtreecommitdiff
path: root/xmake/core/cache/localcache.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-04-22 00:39:48 +0800
committerruki <[email protected]>2021-04-22 00:39:48 +0800
commite124d5d2cc26aa76a0c295791c2ba18f101de7f8 (patch)
treef5bb43413801a19c9d68b64c02bf9f5471ebb88f /xmake/core/cache/localcache.lua
parent2265d384ea7a49ad1ab89860a6d1dbbcca4aff95 (diff)
improve checktool cache
Diffstat (limited to 'xmake/core/cache/localcache.lua')
-rw-r--r--xmake/core/cache/localcache.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/cache/localcache.lua b/xmake/core/cache/localcache.lua
index 8f99a16d7..fc68533f5 100644
--- a/xmake/core/cache/localcache.lua
+++ b/xmake/core/cache/localcache.lua
@@ -84,7 +84,7 @@ end
-- get cache value in level/3
function _instance:get3(key1, key2, key3)
- local value2 = self:get2(key1)
+ local value2 = self:get2(key1, key2)
if value2 ~= nil then
return value2[key3]
end