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/sudo.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connection/sudo.lisp') 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))) -- cgit v1.2.3