Skip to content

Commit

Permalink
edit message
Browse files Browse the repository at this point in the history
  • Loading branch information
snmsts committed Aug 10, 2024
1 parent 5dbd270 commit 1a4c850
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/install/main.lisp
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
(uiop:define-package :roswell2.cmd.install/main
(:use :cl
:roswell-bin/util
:roswell2/main)
:roswell2/main
:roswell2.cmd.run
)
(:nicknames :roswell2.cmd.install)
(:import-from :clingon))

Expand All @@ -20,6 +22,7 @@
"Handler for just evaluate options"
(let ((args (clingon:command-arguments cmd)))
(message :main-handler "args-for install handler ~S" args)
(message :install-handler "forms: ~S" *forms*)
(cond ((null args)
)
(t
Expand Down
2 changes: 1 addition & 1 deletion lib/install/roswell2.cmd.install.asd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
:class :package-inferred-system
:version "23.8.15.114"
:author "SANO Masatoshi"
:description "Install scripts"
:description "Install scripts from system"
:license "MIT"
:depends-on (:roswell2.cmd.install/main))
1 change: 1 addition & 0 deletions lib/run/main.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@
(ignore-errors
(let* ((path (merge-pathnames "roswell.sexp" (impl-path param)))
form)
(message :run-impl "read ~S" path)
(unless (uiop:file-exists-p path)
(message :run-impl "~S seems not exist... try install: ~S" path param)
(install param))
Expand Down

0 comments on commit 1a4c850

Please sign in to comment.