From cd96bc1d48c86600fc3542f15c80ef1f5815ebe5 Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 17 Sep 2023 07:10:00 +0800 Subject: [PATCH] fix #236 --- xmake/check_interfaces.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/check_interfaces.lua b/xmake/check_interfaces.lua index 91ec75bf3..3295dd589 100644 --- a/xmake/check_interfaces.lua +++ b/xmake/check_interfaces.lua @@ -289,7 +289,7 @@ function _check_interfaces(target) end function main(target, opt) - if opt and opt.recheck then + if not opt or (opt and opt.recheck) then _check_interfaces(target) end end