summaryrefslogtreecommitdiff
path: root/xmake/core
diff options
context:
space:
mode:
authorruki <[email protected]>2023-09-12 23:07:33 +0800
committerruki <[email protected]>2023-09-12 23:07:33 +0800
commitedef4b17accd31b07ec0079d305e8f1be8d4fff9 (patch)
treea19d6dc6f760ff4dfedbabe17f0206abcab0cc65 /xmake/core
parentf3f566ae6ffc126153af87c4056f29cfb4579105 (diff)
mark async.runjobs as public api
Diffstat (limited to 'xmake/core')
-rw-r--r--xmake/core/sandbox/modules/import/core/project/project.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/sandbox/modules/import/core/project/project.lua b/xmake/core/sandbox/modules/import/core/project/project.lua
index 45e96bffd..eaa363ba0 100644
--- a/xmake/core/sandbox/modules/import/core/project/project.lua
+++ b/xmake/core/sandbox/modules/import/core/project/project.lua
@@ -112,7 +112,7 @@ function sandbox_core_project.check_options()
-- check all options
local jobs = baseoption.get("jobs") or os.default_njob()
- import("private.async.runjobs", {anonymous = true})("check_options", instance:fork(checktask):script(), {total = #options, comax = jobs})
+ import("async.runjobs", {anonymous = true})("check_options", instance:fork(checktask):script(), {total = #options, comax = jobs})
-- save all options to the cache file
option.save()