From d9dfd621f095e794cc40425a199193e4ad263bb7 Mon Sep 17 00:00:00 2001 From: Anudeep Kumar <34571429+chinnu043@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:47:12 -0700 Subject: [PATCH] Quote Conda command --- conda.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda.el b/conda.el index aa2c37f..b056cb0 100644 --- a/conda.el +++ b/conda.el @@ -145,7 +145,7 @@ Set for the lifetime of the process.") Cached for the lifetime of the process." (if (not (eq conda--installed-version nil)) conda--installed-version - (let ((version-output (shell-command-to-string (format "%s -V" (conda--get-executable-path))))) + (let ((version-output (shell-command-to-string (format "\"%s\" -V" (conda--get-executable-path))))) (condition-case err (s-with version-output (s-trim)