Skip to content

Commit 36f8c1e

Browse files
Further simplify symlink removal (#224)
Co-authored-by: Ezio Melotti <[email protected]>
1 parent 841689c commit 36f8c1e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build_docs.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -998,8 +998,7 @@ def symlink(
998998

999999
if not link.exists() or readlink(link) != directory:
10001000
# Link does not exist or points to the wrong target.
1001-
if link.exists():
1002-
link.unlink()
1001+
link.unlink(missing_ok=True)
10031002
link.symlink_to(directory)
10041003
run(["chown", "-h", f":{group}", str(link)])
10051004
if not skip_cache_invalidation:

0 commit comments

Comments
 (0)