Jon Meow 4 rokov pred
rodič
commit
900f41cc3a
1 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  1. 2 0
      scripts/scripts_utils.py

+ 2 - 0
scripts/scripts_utils.py

@@ -81,6 +81,8 @@ def _download(url: str, local_path: Path) -> Optional[int]:
             return int(response.code)
         with local_path.open("wb") as f:
             shutil.copyfileobj(response, f)
+            # Run fsync because of "Text file busy" in GH Actions.
+            os.fsync(f.fileno())
     return None