summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2022-08-28 22:04:02 +0800
committerruki <[email protected]>2022-08-28 22:04:02 +0800
commit2cfd0fe1d5184a247fbeec988583a4922a324cbc (patch)
tree9b83acc033b6cafefeb93634cc315671f0c76b41
parent0697f30e886d3fae794683ea66737186f4643c7f (diff)
fix format
-rw-r--r--xmake/modules/detect/sdks/find_vstudio.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua
index 890dd7cc1..9bc4cdc51 100644
--- a/xmake/modules/detect/sdks/find_vstudio.lua
+++ b/xmake/modules/detect/sdks/find_vstudio.lua
@@ -116,7 +116,7 @@ function _load_vcvarsall(vcvarsall, vsver, arch, opt)
file:print("set VSCMD_SKIP_SENDTELEMETRY=yes")
end
if opt.vcvars_ver then
- file:print("call \"%s\" %s %s -vcvars_ver=%s > nul", vcvarsall, arch, opt.sdkver and opt.sdkver or "", opt.vcvars_ver)
+ file:print("call \"%s\" %s %s -vcvars_ver=%s > nul", vcvarsall, arch, opt.sdkver and opt.sdkver or "", opt.vcvars_ver)
else
file:print("call \"%s\" %s %s > nul", vcvarsall, arch, opt.sdkver and opt.sdkver or "")
end