Fix SDK patch

This commit is contained in:
Jazzzny
2025-07-09 23:39:39 -04:00
parent 9f35856b39
commit c3f8b47cec

View File

@@ -146,7 +146,7 @@ class GenerateApplication:
print("Patching LC_BUILD_VERSION")
with open(_file, "rb") as f:
data = f.read()
data = data.replace(_find, _replace, 1)
data = data.replace(_find, _replace)
with open(_file, "wb") as f:
f.write(data)