Fix formatting of path assignment in msvc_build_libraries.py

This commit is contained in:
Smite Rust
2026-01-30 19:37:16 +08:00
committed by Christoffer Lerno
parent 10d369d766
commit 373013046d

View File

@@ -239,7 +239,7 @@ def copy(src, dst):
base = os.path.basename(low)
if base == "msvcrt.lib" or base == "oldnames.lib":
base = base[:-3].upper() + "lib"
path = os.path.join(os.path.dirname(low), base);
path = os.path.join(os.path.dirname(low), base)
shutil.copy(src, path)
shutil.copy(src, low)