From 6e24f29490f494edba9b56d635f2fd79fe03dcba Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 3 Feb 2025 23:11:23 +0800 Subject: [PATCH] Update find_raddbg.lua --- xmake/modules/detect/tools/find_raddbg.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/xmake/modules/detect/tools/find_raddbg.lua b/xmake/modules/detect/tools/find_raddbg.lua index faa3106631..c6a5735742 100644 --- a/xmake/modules/detect/tools/find_raddbg.lua +++ b/xmake/modules/detect/tools/find_raddbg.lua @@ -37,19 +37,11 @@ import("lib.detect.find_programver") -- @endcode -- function main(opt) - - -- init options opt = opt or {} - - -- find program local program = find_program(opt.program or "raddbg", opt) - - -- find program version local version = nil if program and opt and opt.version then version = find_programver(program, opt) end - - -- ok? return program, version end