Skip to content

Commit 8fc2721

Browse files
committed
Attempt to constant-ify pulling version from asdf declaration
Signed-off-by: Dan S. Camper <[email protected]>
1 parent a13555b commit 8fc2721

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

json2ecl.asd

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
:description "Examines JSON data and deduces the ECL RECORD definitions necessary to parse it."
1111
:author "Dan S. Camper"
1212
:license "MIT"
13-
:version "0.0.3"
13+
:version "0.0.4"
1414
:serial t
1515
:depends-on (#:adopt #:com.inuoe.jzon #:with-user-abort)
1616
:components ((:file "package")

userio.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
(exit-on-ctrl-c
6060
(multiple-value-bind (arguments options) (adopt:parse-options-or-exit *ui* argv)
6161
(cond ((gethash 'version options)
62-
(format t "~A~%" (slot-value (asdf:find-system 'json2ecl) 'asdf:version))
62+
(format t "~A~%" #.(slot-value (asdf:find-system 'json2ecl) 'asdf:version))
6363
(adopt:exit))
6464
((gethash 'help options)
6565
(adopt:print-help-and-exit *ui*)))

0 commit comments

Comments
 (0)