We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5bffd1 commit 3fd368cCopy full SHA for 3fd368c
tools/ports/__init__.py
@@ -90,7 +90,7 @@ def maybe_copy(src, dest):
90
headers will be "re-installed" but we skip the actual filesystem mods
91
to avoid racing with other processes that might be reading these files.
92
"""
93
- if os.path.exists(dest) and utils.read_file(src) == utils.read_file(dest):
+ if os.path.exists(dest) and utils.read_binary(src) == utils.read_binary(dest):
94
return
95
shutil.copyfile(src, dest)
96
0 commit comments