From ce97237986668c31d9b023348f1ef16199276794 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Sat, 8 Jul 2023 12:26:49 +0300 Subject: [PATCH] fix: move '-s bash' to the end (#1) --- micromamba.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/micromamba.el b/micromamba.el index e73eb6a..23334ec 100644 --- a/micromamba.el +++ b/micromamba.el @@ -164,7 +164,7 @@ The parameters value is an alist as defined by `micromamba--parse-script-buffer'." (with-temp-buffer (call-process micromamba-executable nil t nil - "shell" "-s" "bash" "activate" prefix) + "shell" "activate" prefix "-s" "bash") (goto-char (point-min)) (micromamba--parse-script-buffer))) @@ -175,7 +175,7 @@ The parameters value is an alist as defined by `micromamba--parse-script-buffer'." (with-temp-buffer (call-process micromamba-executable nil t nil - "shell" "-s" "bash" "deactivate") + "shell" "deactivate" "-s" "bash") (goto-char (point-min)) (micromamba--parse-script-buffer)))