From e6e5d86704fff151da5a667102587cb369bd20b1 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Wed, 24 Feb 2021 10:47:58 -0700 Subject: use braces rather than parentheses with CL-INTERPOL 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 419bb62..d9b5f42 100644 --- a/src/connection/ssh.lisp +++ b/src/connection/ssh.lisp @@ -65,7 +65,7 @@ (defmethod connection-writefile ((c ssh-connection) path contents) (with-remote-temporary-file (temp) - (mrun :input contents (sshcmd c "cat" #?">$(temp)")) + (mrun :input contents (sshcmd c "cat" #?">${temp}")) (mrun "mv" temp path))) ;; rsync it straight to to its destination so rsync can do incremental updates -- cgit v1.2.3