Fix: print (usage name) instead of the usage function

This commit is contained in:
bom 2022-07-27 11:29:31 +02:00
parent 980eec3158
commit f403f9452b

View file

@ -33,7 +33,7 @@
{:keys [config auth]} args]
(cond
(some #(= "-h" %) options)
(println usage)
(println (usage name))
:else
(let [config-str (slurp config)
auth-str (slurp auth)