diff options
| author | Aclios <166991832+Aclios@users.noreply.github.com> | 2026-01-30 16:31:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-30 16:31:53 +0100 |
| commit | e5701a754e910812061cdd7aa2012feca050a6c4 (patch) | |
| tree | bae51b2de9e8306618a6f0edc06baf3af43dae2f | |
| parent | 63b823ef2ccfcf2c0bf4223832c34f4528ee4907 (diff) | |
fix(config): explicitly use utf-8 for build.ninja (#140)
Co-authored-by: Aetias <144526980+AetiasHax@users.noreply.github.com>
| -rwxr-xr-x | tools/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure.py b/tools/configure.py index 0e5d0154..3820bcd8 100755 --- a/tools/configure.py +++ b/tools/configure.py @@ -238,7 +238,7 @@ def main(): project = Project(args.version, platform=platform, delinks_json=delinks_json) - with build_ninja_path.open("w") as file: + with build_ninja_path.open("w", encoding="utf-8") as file: n = ninja_syntax.Writer(file) n.rule( |
