diff options
| author | ruki <[email protected]> | 2023-02-21 00:43:15 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-02-21 00:43:15 +0800 |
| commit | e0ac2fd899e03be83ad506616e0dab931ea69969 (patch) | |
| tree | 5da4d14711ef983727061071c872ef836f7b960b /xmake/rules | |
| parent | 559f90b555e5227716a6762d545c9c2171fef55c (diff) | |
move checker
Diffstat (limited to 'xmake/rules')
| -rw-r--r-- | xmake/rules/utils/check_targets/checker.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/utils/check_targets/checker.lua b/xmake/rules/utils/check_targets/checker.lua index 70b21450b..c6cbd4bf1 100644 --- a/xmake/rules/utils/check_targets/checker.lua +++ b/xmake/rules/utils/check_targets/checker.lua @@ -18,7 +18,7 @@ -- @file check_targets.lua -- -import("plugins.check.checker", {rootdir = os.programdir()}) +import("private.check.checker", {rootdir = os.programdir()}) function _show(str, opt) _g.showed = _g.showed or {} @@ -43,7 +43,7 @@ function check_target(target) for name, info in table.orderpairs(checkers) do -- just do some faster checkers if info.timely then - import("plugins.check.checkers." .. name, {anonymous = true, rootdir = os.programdir()})({ + import("private.check.checkers." .. name, {anonymous = true, rootdir = os.programdir()})({ target = target, show = _show}) end end |
