mirror of
https://github.com/SqrtMinusOne/micromamba.el.git
synced 2025-12-10 13:23:02 +03:00
fix: move '-s bash' to the end (#1)
This commit is contained in:
parent
5a152840a7
commit
ce97237986
1 changed files with 2 additions and 2 deletions
|
|
@ -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)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue