diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-09-29 07:52:51 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-09-29 09:02:13 -0500 |
commit | 9a8fcd52637d6e61003bd5ba8a25d48ec6cce989 (patch) | |
tree | 2abef0affa400cce1967fc8ea4011ab636cd209b /methods.py | |
parent | 1fc82087658066935bed9e1350d62e334c7e0309 (diff) | |
download | redot-engine-9a8fcd52637d6e61003bd5ba8a25d48ec6cce989.tar.gz |
SCons: Fix MSVC decode error
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods.py b/methods.py index 411ce59d9e..df7ca5a59f 100644 --- a/methods.py +++ b/methods.py @@ -807,7 +807,7 @@ def get_compiler_version(env): if env.msvc and not using_clang(env): try: - args = [env["VSWHERE"], "-latest", "-products", "*", "-requires", "Microsoft.Component.MSBuild"] + args = [env["VSWHERE"], "-latest", "-products", "*", "-requires", "Microsoft.Component.MSBuild", "-utf8"] version = subprocess.check_output(args, encoding="utf-8").strip() for line in version.splitlines(): split = line.split(":", 1) |