branch: externals/system-packages
commit df014690006be372fa3ef156a61d41ea4df9d8be
Author: Alex Branham <alex.bran...@gmail.com>
Commit: Alex Branham <alex.bran...@gmail.com>

    Ensure a space between command and args
---
 system-packages.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system-packages.el b/system-packages.el
index 14bf173..28021de 100644
--- a/system-packages.el
+++ b/system-packages.el
@@ -347,7 +347,7 @@ of passing additional arguments to the package manager."
     (setq command (mapconcat 'identity (list command pack) " "))
     (when noconfirm
       (setq args (concat args (and pack " ") noconfirm)))
-    (concat command args)))
+    (concat command " " args)))
 
 (defun system-packages--run-command (action &optional pack args)
   "Run a command asynchronously using the system's package manager.

Reply via email to