aboutsummaryrefslogtreecommitdiff
path: root/src/connection/local.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection/local.lisp')
-rw-r--r--src/connection/local.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connection/local.lisp b/src/connection/local.lisp
index 06b4e67..85c8f95 100644
--- a/src/connection/local.lisp
+++ b/src/connection/local.lisp
@@ -34,8 +34,8 @@ root Lisp is running on, as the root Lisp's uid."))
(defmethod connection-run ((connection local-connection) shell-cmd input)
(multiple-value-bind (output _ exit-code)
- ;; assumes a POSIX shell (otherwise we could wrap in 'sh -c')
- (run-program shell-cmd
+ ;; wrap in sh -c in case user's shell is not POSIX
+ (run-program (strcat "sh -c " (escape-sh-token shell-cmd))
:force-shell t
:input input
:output :string