aboutsummaryrefslogtreecommitdiff
path: root/src/connection/shell-wrap.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/connection/shell-wrap.lisp')
-rw-r--r--src/connection/shell-wrap.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection/shell-wrap.lisp b/src/connection/shell-wrap.lisp
index f247a14..bcc8fc8 100644
--- a/src/connection/shell-wrap.lisp
+++ b/src/connection/shell-wrap.lisp
@@ -29,7 +29,7 @@
(multiple-value-bind (out exit)
(let* ((path (escape-sh-token path))
(base #?"test -r ${path} && cat ${path}")
- (cmd (if delete (strcat base #?"&& rm ${path}") base)))
+ (cmd (if delete (strcat base #?" && rm ${path}") base)))
(connection-run c cmd nil))
(if (zerop exit)
out