diff options
author | Colin Okay <okay@toyful.space> | 2022-03-20 07:51:25 -0500 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-03-20 07:51:25 -0500 |
commit | 33e54da2d7c5a012650322d10477154b6a91ba1e (patch) | |
tree | e60ef8cce957474d9b934b16fd8a131722230350 /app/app.lisp | |
parent | 2cf6a9883b59fe27fc6cd4888261416a2e929be3 (diff) |
[bugfix] login argument length check was incorrect.
Diffstat (limited to 'app/app.lisp')
-rw-r--r-- | app/app.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/app.lisp b/app/app.lisp index c9372c8..0684824 100644 --- a/app/app.lisp +++ b/app/app.lisp @@ -19,7 +19,7 @@ (in-package :oneliners.cli.app) ;;; VERSION -(defparameter +ol-version+ "0.7.0") +(defparameter +ol-version+ "0.7.1") ;;; HELP TEXTS (defparameter +oneliners-variables-help-text+ @@ -346,7 +346,7 @@ than the users." (:invite (cli:request-invite-code)) (:login - (help-and-quit-unless "login" (= 3 (length args))) + (help-and-quit-unless "login" (= 2 (length args))) (apply 'cli:login args)) (:logout (cli:revoke-access)) |