summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2026-02-04 00:48:00 +0800
committerruki <[email protected]>2026-02-04 00:48:00 +0800
commit3445a14dda3cceb13ead089ecd03387012446cac (patch)
tree8ec7689156875330d4228a1bcbd592fc079e7296
parentc3d3aecca53110ac17c32c4a70da6a7e3b20b837 (diff)
improve tips
-rw-r--r--xmake/modules/detect/sdks/find_vstudio.lua4
1 files 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