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))