aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-06 15:03:34 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-06 15:57:19 -0700
commit3fe7f29bd7ac5f775be23fcff20d1393e2804c25 (patch)
tree1103218787b264b243ded9ae66fbb0b594b7f701
parent51b9a4cae5f02972e98fb1b14fb7c097da4c2f29 (diff)
downloadconsfigurator-3fe7f29bd7ac5f775be23fcff20d1393e2804c25.tar.gz
fix variable reference in error message
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-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 345a59d..b1bafc4 100644
--- a/src/connection/shell-wrap.lisp
+++ b/src/connection/shell-wrap.lisp
@@ -52,4 +52,4 @@
conn
#?"mv ${(escape-sh-token temp)} ${(escape-sh-token path)}"
nil)
- (unless (zerop exit) (error "Failed to write ~A: ~A" temp out)))))
+ (unless (zerop exit) (error "Failed to write ~A: ~A" path out)))))