signatures should match other defmethods

This commit is contained in:
Jake McCrary 2014-05-28 23:03:50 -05:00
parent 70d3058944
commit 08361e3b64

View file

@ -38,11 +38,11 @@
(defmethod push :none [project & [args]] (unknown-vcs "push"))
(defmethod commit :none [project & [args]] (unknown-vcs "commit"))
(defmethod commit :none [project] (unknown-vcs "commit"))
(defmethod tag :none [project & [args]] (unknown-vcs "tag"))
(defmethod tag :none [project] (unknown-vcs "tag"))
(defmethod assert-committed :none [project & [args]] (unknown-vcs "assert-committed"))
(defmethod assert-committed :none [project] (unknown-vcs "assert-committed"))
;;; Git