Skip to content

Commit

Permalink
style(install-deps): consistent newline output
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 17, 2024
1 parent b3ff3a2 commit 19d6501
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lisp/core/install-deps.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 19d6501

Please sign in to comment.