aboutsummaryrefslogtreecommitdiff
path: root/src/connection/ssh.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-24 10:47:58 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-24 10:47:58 -0700
commite6e5d86704fff151da5a667102587cb369bd20b1 (patch)
tree33046fcc7494a46380c05fcd6fc074143583488a /src/connection/ssh.lisp
parentda3b1064c8ad1072d8950f8aad4e6c40d2825112 (diff)
downloadconsfigurator-e6e5d86704fff151da5a667102587cb369bd20b1.tar.gz
use braces rather than parentheses with CL-INTERPOL
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection/ssh.lisp')
-rw-r--r--src/connection/ssh.lisp2
1 files changed, 1 insertions, 1 deletions
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