Skip to content

Commit

Permalink
feat(install-deps): Print message when no dependencies specified
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 17, 2024
1 parent eca52b4 commit b3ff3a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lisp/core/install-deps.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
(when name
(let* ((system (asdf:find-system name))
(deps (asdf:system-depends-on system)))
(qob-install-systems deps))))
(if deps (qob-install-systems deps)
(qob-info "(The system `~A' has no dependencies specified, skipped)" name)))))

(qob-start
(let ((systems (qob-args))
Expand Down

0 comments on commit b3ff3a2

Please sign in to comment.