We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a13555b commit 8fc2721Copy full SHA for 8fc2721
json2ecl.asd
@@ -10,7 +10,7 @@
10
:description "Examines JSON data and deduces the ECL RECORD definitions necessary to parse it."
11
:author "Dan S. Camper"
12
:license "MIT"
13
- :version "0.0.3"
+ :version "0.0.4"
14
:serial t
15
:depends-on (#:adopt #:com.inuoe.jzon #:with-user-abort)
16
:components ((:file "package")
userio.lisp
@@ -59,7 +59,7 @@
59
(exit-on-ctrl-c
60
(multiple-value-bind (arguments options) (adopt:parse-options-or-exit *ui* argv)
61
(cond ((gethash 'version options)
62
- (format t "~A~%" (slot-value (asdf:find-system 'json2ecl) 'asdf:version))
+ (format t "~A~%" #.(slot-value (asdf:find-system 'json2ecl) 'asdf:version))
63
(adopt:exit))
64
((gethash 'help options)
65
(adopt:print-help-and-exit *ui*)))
0 commit comments