From 3445a14dda3cceb13ead089ecd03387012446cac Mon Sep 17 00:00:00 2001 From: ruki Date: Wed, 4 Feb 2026 00:48:00 +0800 Subject: improve tips --- xmake/modules/detect/sdks/find_vstudio.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua index a92872199..be0c08ad8 100644 --- a/xmake/modules/detect/sdks/find_vstudio.lua +++ b/xmake/modules/detect/sdks/find_vstudio.lua @@ -704,7 +704,7 @@ function _show_vstudio_diagnosis_result(vstudio) end end table.sort(found, function (a, b) return a > b end) - cprint("${dim}detecting vstudio environment ... ${color.success}found: %s", table.concat(found, ", ")) + cprint("${dim}detecting vstudio environment ... ${color.success}%s", table.concat(found, ", ")) end -- find vstudio environment @@ -753,7 +753,7 @@ function main(opt) if vstudio and not table.empty(vstudio) then _show_vstudio_diagnosis_result(vstudio) else - cprint("${dim}detecting vstudio environment ... not found") + cprint("${dim}detecting vstudio environment ...${color.failure}${text.failure}") end end return vstudio -- cgit v1.3.1