emacs: simplify path operation in update-from-overlay.py

This commit is contained in:
Lin Jian
2026-03-04 00:37:10 +08:00
parent b8448e0686
commit 64f3c34d7c
@@ -190,7 +190,7 @@ def fetch_fileset(
basename = emacs_overlay.elisp_packages_set[name]["basename"]
url = f"{emacs_overlay.raw_url}/{sha}/{location}/{basename}"
destination = pathlib.Path(here_directory.path, basename).resolve()
destination = here_directory.path / basename
logger.debug(f"Getting {url}")