diff options
| author | ruki <[email protected]> | 2026-06-18 21:00:07 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-06-18 21:00:07 +0800 |
| commit | 43a4e2c277d003251f476e8aa5b2f0efbe2f3ae7 (patch) | |
| tree | 140c4f0a1376cfde9cef98b33dd66361183661c6 /xmake/plugins/show/info/depgraph.lua | |
| parent | 80f6dba52aa17a4900a51f76da7f05cf3d5fa73c (diff) | |
improve to check multiple targets
Diffstat (limited to 'xmake/plugins/show/info/depgraph.lua')
| -rw-r--r-- | xmake/plugins/show/info/depgraph.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/show/info/depgraph.lua b/xmake/plugins/show/info/depgraph.lua index 2c73f3abc..b8107a558 100644 --- a/xmake/plugins/show/info/depgraph.lua +++ b/xmake/plugins/show/info/depgraph.lua @@ -23,7 +23,7 @@ import("core.base.option") import("core.base.json") import("core.project.config") import("core.project.project") -import("private.detect.check_targetname") +import("private.detect.check_targetnames") function _collect_target_entry(target) local deps = {} @@ -135,7 +135,7 @@ function main(name) local root_target if name then - root_target = assert(check_targetname(name)) + root_target = assert(check_targetnames(name)) end local graph = _collect_target_graph(root_target) |
