aboutsummaryrefslogtreecommitdiff
path: root/src/property/cmd.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-07-08 23:46:11 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-07-10 21:31:38 -0700
commit19d72fd1ae104a12c7402de356386162314863ad (patch)
tree537966007f072c4011e23aa8a17354aa00f05f11 /src/property/cmd.lisp
parent95cbccc32f051902645c78b0751e85ee3f447b03 (diff)
downloadconsfigurator-19d72fd1ae104a12c7402de356386162314863ad.tar.gz
CMD:SINGLE: use MRUN not RUN
We are not doing anything with the output, so there is no particular need to use RUN, and when the caller passes :INFORM, they probably want the user to see both stdout and stderr. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/cmd.lisp')
-rw-r--r--src/property/cmd.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/property/cmd.lisp b/src/property/cmd.lisp
index 45b71ce..1f46b60 100644
--- a/src/property/cmd.lisp
+++ b/src/property/cmd.lisp
@@ -34,4 +34,4 @@ running the command, using env(1)."
collect (escape-sh-token arg) into accum
else collect (prin1-to-string arg) into accum
finally (return (format nil "~{~A~^ ~}" accum))))
- (:apply (apply #'run args)))
+ (:apply (apply #'mrun args)))