diff options
author | Teddy Wing | 2022-05-10 20:52:58 +0200 |
---|---|---|
committer | Teddy Wing | 2022-05-10 20:52:58 +0200 |
commit | f0af788f710ce7831b42a09f0131eba7642b9210 (patch) | |
tree | b14dc4695e96eff7734fef8d50d390cde61c6caf | |
parent | 0e9aabb5f065c4257bdf46feee2e5347d0a9fb31 (diff) | |
download | wajir-f0af788f710ce7831b42a09f0131eba7642b9210.tar.bz2 |
option.lisp: Fix `--version` argument
I had copy-pasted this code from Extreload. Print the actual project's
version.
-rw-r--r-- | src/option.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
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+)) |