From 19d72fd1ae104a12c7402de356386162314863ad Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 8 Jul 2021 23:46:11 -0700 Subject: 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 --- src/property/cmd.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/property/cmd.lisp') 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))) -- cgit v1.2.3