diff options
-rw-r--r-- | guix-shell.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix-shell.el b/guix-shell.el index 61478c9..df0ea8d 100644 --- a/guix-shell.el +++ b/guix-shell.el @@ -34,6 +34,7 @@ an alist of search path environment variables." (with-current-buffer buffer (setq default-directory directory) (erase-buffer) + (message "running guix shell...") (call-process "guix" nil t nil "shell" "--search-paths") ;; Gather up the names of all the environment variables and transform ;; the lines into echo commands that we can eval to get the actual @@ -62,6 +63,7 @@ an alist of search path environment variables." (setq names (reverse names)) ;; Eval the search paths. (call-process-region (point-min) (point-max) "sh" t t nil) + (message "guix shell complete") ;; Iterate over the result lines and create an environment variable ;; mapping. (goto-char (point-min)) |