From e969e942985c7a5afdeda3c1d8334c9aa5b2d3d5 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Tue, 23 Feb 2021 13:36:25 -0700 Subject: fix a few calls to RUN Signed-off-by: Sean Whitton --- src/connection/ssh.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connection/ssh.lisp') diff --git a/src/connection/ssh.lisp b/src/connection/ssh.lisp index faa16a9..c6acfee 100644 --- a/src/connection/ssh.lisp +++ b/src/connection/ssh.lisp @@ -52,7 +52,7 @@ (defmethod connection-run ((c ssh-connection) cmd &optional input) (multiple-value-bind (out err exit) - (run :input input (sshcmd c cmd)) + (run :may-fail :input input (sshcmd c cmd)) (values (strcat err out) exit))) (defmethod connection-readfile ((c ssh-connection) path) -- cgit v1.2.3