From 19d6501c1657c71738260ce5e81736cede3c16c9 Mon Sep 17 00:00:00 2001 From: JenChieh Date: Tue, 17 Dec 2024 01:35:41 -0800 Subject: [PATCH] style(install-deps): consistent newline output --- lisp/core/install-deps.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/core/install-deps.lisp b/lisp/core/install-deps.lisp index a732669..c02a0b7 100644 --- a/lisp/core/install-deps.lisp +++ b/lisp/core/install-deps.lisp @@ -54,8 +54,11 @@ (when name (let* ((system (asdf:find-system name)) (deps (asdf:system-depends-on system))) - (if deps (qob-install-systems deps) - (qob-info "(The system `~A' has no dependencies specified, skipped)" name))))) + (cond + (deps (qob-install-systems deps)) + (t + (qob-msg "") + (qob-info "(The system `~A' has no dependencies specified, skipped)" name)))))) (qob-start (let ((systems (qob-args))