Compare commits

..

2 commits

Author SHA1 Message Date
Clay
c096759fd8
Merge 9ecd740ec9 into cd3ce4b714 2025-03-25 20:39:16 +00:00
claytharrison
9ecd740ec9 Address changes 2025-03-25 21:38:57 +01:00

View file

@ -196,9 +196,9 @@ Returns an alist with the following keys:
"Pull the `name` property out of the YAML file at FILENAME."
(when filename
(let ((filename (file-truename filename)))
(or (unless (file-has-changed-p filename))
(cdr (assoc filename micromamba--yml-cache))
(setf (alist-get filename micromamba--yml-cache)
(or (unless (file-has-changed-p filename)
(cdr (assoc filename micromamba--yml-cache)))
(setf (alist-get filename micromamba--yml-cache nil nil #'equal)
(micromamba--get-name-from-env-yml-contents
(micromamba--read-file-into-string filename)))))))