summaryrefslogtreecommitdiff
path: root/xmake/rules/plugin
diff options
context:
space:
mode:
authorJérôme Leclercq <[email protected]>2021-06-02 00:41:50 +0200
committerJérôme Leclercq <[email protected]>2021-06-02 00:41:50 +0200
commitd16cdc10394f85540b833bb1bd541479e504197e (patch)
tree683e4676c04d92be4d4eec001d6cc494fc1cce51 /xmake/rules/plugin
parent171780c824fdacef1173f6363c8c173b9906ab9d (diff)
Move autoupdate file to the persistent .xmake cache folder
Diffstat (limited to 'xmake/rules/plugin')
-rw-r--r--xmake/rules/plugin/vsxmake/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/plugin/vsxmake/xmake.lua b/xmake/rules/plugin/vsxmake/xmake.lua
index 1821e5dfb..61e79dfa4 100644
--- a/xmake/rules/plugin/vsxmake/xmake.lua
+++ b/xmake/rules/plugin/vsxmake/xmake.lua
@@ -37,7 +37,7 @@ rule("plugin.vsxmake.autoupdate")
import("core.base.task")
-- run only once for all xmake process in vs
- local tmpfile = os.tmpfile(path.join(os.projectdir(), "plugin.vsxmake.autoupdate"))
+ local tmpfile = path.join(os.projectdir(), ".xmake", "plugin.vsxmake.autoupdate")
local dependfile = tmpfile .. ".d"
local lockfile = io.openlock(tmpfile .. ".lock")
if lockfile:trylock() then