From 6935775b49c21a1af9d8e040c64b95e97f0e5dd9 Mon Sep 17 00:00:00 2001 From: Akira Komamura Date: Sun, 3 Nov 2024 03:47:20 +0900 Subject: [PATCH] fix: Resolve symlinks when updating a path input --- nix3-flake-input.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix3-flake-input.el b/nix3-flake-input.el index 9c1ffb0..c9f243c 100644 --- a/nix3-flake-input.el +++ b/nix3-flake-input.el @@ -205,7 +205,7 @@ (interactive (list (progn (require 'project) (project-prompt-project-dir)))) - (nix3-flake-input-update (concat "path:" (expand-file-name dir)))) + (nix3-flake-input-update (concat "path:" (file-truename dir)))) (provide 'nix3-flake-input) ;;; nix3-flake-input.el ends here