Fix crash in is_outdated if host file does not exist.

This commit is contained in:
Adam Gausmann 2023-04-11 14:00:32 -05:00
parent 3d336fc77f
commit af47f8b354

View file

@ -42,6 +42,7 @@ def is_outdated(src: List[Path], dst: Path) -> bool:
return any(
a_src.stat().st_mtime > dst_modified
for a_src in src
if a_src.exists()
)