|
|
@ -16,7 +16,7 @@
|
|
|
|
ref (or revision repo-branch)]
|
|
|
|
ref (or revision repo-branch)]
|
|
|
|
(lcd-git/clone ctx repo-uri ref cwd)))
|
|
|
|
(lcd-git/clone ctx repo-uri ref cwd)))
|
|
|
|
|
|
|
|
|
|
|
|
(defn check-ancient [args ctx]
|
|
|
|
(defn ancient [args ctx]
|
|
|
|
(lcd-shell/bash ctx (:cwd args) "lein ancient"))
|
|
|
|
(lcd-shell/bash ctx (:cwd args) "lein ancient"))
|
|
|
|
|
|
|
|
|
|
|
|
(defn compile [args ctx]
|
|
|
|
(defn compile [args ctx]
|
|
|
@ -24,3 +24,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
(defn test [args ctx]
|
|
|
|
(defn test [args ctx]
|
|
|
|
(lcd-shell/bash ctx (:cwd args) "lein test"))
|
|
|
|
(lcd-shell/bash ctx (:cwd args) "lein test"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defn bikeshed [args ctx]
|
|
|
|
|
|
|
|
(lcd-shell/bash ctx (:cwd args) "lein bikeshed"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defn eastwood [args ctx]
|
|
|
|
|
|
|
|
(lcd-shell/bash ctx (:cwd args) "lein eastwood"))
|
|
|
|