Skip to content

Commit

Permalink
Fix to work clackup without -S option (ref 1177ab2).
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Sep 24, 2018
1 parent 48e6909 commit e3e0328
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roswell/clackup.ros
Expand Up @@ -140,7 +140,8 @@ Options:
(%terminate -1 "File doesn't exist: ~A" app-file)) (%terminate -1 "File doesn't exist: ~A" app-file))


;; Add ASDF source-registry ;; Add ASDF source-registry
(asdf:compute-source-registry (truename (getf opt-args :source-registry))) (when (getf opt-args :source-registry)
(asdf:compute-source-registry (truename (getf opt-args :source-registry))))


;; Load systems ;; Load systems
(mapc #'ql:quickload (getf opt-args :systems)) (mapc #'ql:quickload (getf opt-args :systems))
Expand Down

0 comments on commit e3e0328

Please sign in to comment.