mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
show asdf version when 'ros asdf'
This commit is contained in:
parent
d20f0e6d2f
commit
49c89174e2
|
|
@ -80,8 +80,12 @@ exec ros -Q -m roswell -L sbcl-bin -- $0 "$@"
|
|||
(format t "~A~%" i)))
|
||||
|
||||
(defun usage ()
|
||||
(let ((s *error-output*))
|
||||
(format s "Usage: ~A asdf install/use/list/delete version ~%" (opt "wargv0"))))
|
||||
(let ((s *error-output*)
|
||||
(asdf (config "asdf.version")))
|
||||
(format s "Usage: ~A asdf install/use/list/delete version ~%" (pathname-name (opt "wargv0")))
|
||||
(format s (if (zerop (length asdf))
|
||||
"ASDF is not specified.~%"
|
||||
"choosen version is ~S~%") asdf)))
|
||||
|
||||
(defun main (&optional subcmd &rest argv)
|
||||
(if subcmd
|
||||
|
|
|
|||
Loading…
Reference in a new issue