aboutsummaryrefslogtreecommitdiff
path: root/src/connection/sudo.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/sudo.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/sudo.lisp')
-rw-r--r--src/connection/sudo.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection/sudo.lisp b/src/connection/sudo.lisp
index 972c20f..fabae71 100644
--- a/src/connection/sudo.lisp
+++ b/src/connection/sudo.lisp
@@ -115,7 +115,7 @@
(error "File ~S not readable" path))))
(defmethod connection-writefile ((c sudo-connection) path contents)
- (connection-run c #?"cat >$(path)" contents))
+ (connection-run c #?"cat >${path}" contents))
(defmethod connection-upload ((c sudo-connection) from to)
(run (sudocmd c "cp" from to)))