Skip to content

Commit ab98ca6

Browse files
committed
Fix invalid character encoding on Windows.
1 parent b5052fa commit ab98ca6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build_scripts/build_helios.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,8 @@ def _check_windows_dll_dependencies(self, dll_path: Path) -> Dict[str, bool]:
657657

658658
print(f"DLL dependencies for {dll_path.name}:")
659659
for dep, found in dependencies.items():
660-
status = "" if found else ""
661-
print(f" {status} {dep}")
660+
status = "OK" if found else "MISSING"
661+
print(f" [{status}] {dep}")
662662

663663
except (subprocess.TimeoutExpired, FileNotFoundError, subprocess.CalledProcessError):
664664
print(f"Could not check DLL dependencies (dumpbin not available)")

0 commit comments

Comments
 (0)