diff options
| -rw-r--r-- | xmake/modules/detect/sdks/find_vstudio.lua | 4 |
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 |
