From f0af788f710ce7831b42a09f0131eba7642b9210 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Tue, 10 May 2022 20:52:58 +0200 Subject: option.lisp: Fix `--version` argument I had copy-pasted this code from Extreload. Print the actual project's version. --- src/option.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/option.lisp b/src/option.lisp index 2ffaa97..3a36cf6 100644 --- a/src/option.lisp +++ b/src/option.lisp @@ -81,7 +81,7 @@ with code `exit-code`." ;; Version (when-option (options :version) - (format t "~a~%" (asdf:component-version (asdf:find-system :extreload))) + (format t "~a~%" (asdf:component-version (asdf:find-system :wajir))) (opts:exit sysexits:+ok+)) -- cgit v1.2.3