From e0ac2fd899e03be83ad506616e0dab931ea69969 Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 21 Feb 2023 00:43:15 +0800 Subject: move checker --- xmake/plugins/check/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmake/plugins/check/main.lua') diff --git a/xmake/plugins/check/main.lua b/xmake/plugins/check/main.lua index 9ec6d03fd..5ee89ae3e 100644 --- a/xmake/plugins/check/main.lua +++ b/xmake/plugins/check/main.lua @@ -22,7 +22,7 @@ import("core.base.option") import("core.base.text") import("core.project.config") -import("checker") +import("private.check.checker") -- show checkers list function _show_list() @@ -80,7 +80,7 @@ function _check(group_or_name, arguments) if showstats == nil and info and info.showstats ~= nil then showstats = info.showstats end - import("checkers." .. name, {anonymous = true})(arguments) + import("private.check.checkers." .. name, {anonymous = true})(arguments) end if showstats ~= false then checker.show_stats() -- cgit v1.3.1