From 64f3c34d7c2c1ee336a86b9aab51986daa9c70bc Mon Sep 17 00:00:00 2001 From: Lin Jian Date: Tue, 3 Mar 2026 22:31:26 +0800 Subject: [PATCH] emacs: simplify path operation in update-from-overlay.py --- .../editors/emacs/elisp-packages/update-from-overlay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/update-from-overlay.py b/pkgs/applications/editors/emacs/elisp-packages/update-from-overlay.py index c57ed0fde639..5805a755ba74 100755 --- a/pkgs/applications/editors/emacs/elisp-packages/update-from-overlay.py +++ b/pkgs/applications/editors/emacs/elisp-packages/update-from-overlay.py @@ -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}")