From 41f5c92d62171535c4d21e6722b0d12ec01e875b Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Tue, 13 Jul 2021 21:58:46 -0700 Subject: APT:RECONFIGURED: pass a string not a list as command input Signed-off-by: Sean Whitton --- src/property/apt.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/property/apt.lisp') diff --git a/src/property/apt.lisp b/src/property/apt.lisp index c05a36d..cd0e938 100644 --- a/src/property/apt.lisp +++ b/src/property/apt.lisp @@ -81,7 +81,8 @@ Typically used with the ON-CHANGE combinator." (:apply (assert-euid-root) (run - :input (loop for triple in triples collect #?"${package} @{triple}") + :input (unlines + (loop for triple in triples collect #?"${package} @{triple}")) "debconf-set-selections") (run :env +noninteractive-env+ "dpkg-reconfigure" "-fnone" package))) -- cgit v1.2.3