sync after a build (#38606)

* build: sync after a successful build

* sync on failed builds too
This commit is contained in:
Daniel Koepping
2026-08-10 21:23:59 -07:00
committed by GitHub
parent b5b156825d
commit b1cdf387b5
+2
View File
@@ -50,6 +50,8 @@ def build() -> None:
if scons.returncode == 0:
break
os.sync()
if scons.returncode != 0:
# Build failed log errors
error_s = b"\n".join(compile_output).decode('utf8', 'replace')