Replace run! with dorun and map
This makes mount compatible with older Clojure versions again.
This commit is contained in:
parent
e278ce9f39
commit
3179ed2233
1 changed files with 6 additions and 5 deletions
|
|
@ -119,7 +119,8 @@
|
||||||
(let [done (atom [])]
|
(let [done (atom [])]
|
||||||
(->> states
|
(->> states
|
||||||
(sort-by (comp :order meta) order)
|
(sort-by (comp :order meta) order)
|
||||||
(run! #(fun % (meta %) done)))
|
(map #(fun % (meta %) done))
|
||||||
|
dorun)
|
||||||
@done))
|
@done))
|
||||||
|
|
||||||
(defn- merge-lifecycles
|
(defn- merge-lifecycles
|
||||||
|
|
@ -159,17 +160,17 @@
|
||||||
|
|
||||||
(defn stop [& states]
|
(defn stop [& states]
|
||||||
(let [states (or states (find-all-states))
|
(let [states (or states (find-all-states))
|
||||||
_ (run! unsub states) ;; unmark substitutions marked by "start-with"
|
_ (dorun (map unsub states)) ;; unmark substitutions marked by "start-with"
|
||||||
stopped (bring states down >)]
|
stopped (bring states down >)]
|
||||||
(run! rollback! states) ;; restore to origin from "start-with"
|
(dorun (map rollback! states)) ;; restore to origin from "start-with"
|
||||||
{:stopped stopped}))
|
{:stopped stopped}))
|
||||||
|
|
||||||
(defn stop-except [& states]
|
(defn stop-except [& states]
|
||||||
(let [all (set (find-all-states))
|
(let [all (set (find-all-states))
|
||||||
states (remove (set states) all)
|
states (remove (set states) all)
|
||||||
_ (run! unsub states) ;; unmark substitutions marked by "start-with"
|
_ (dorun (map unsub states)) ;; unmark substitutions marked by "start-with"
|
||||||
stopped (bring states down >)]
|
stopped (bring states down >)]
|
||||||
(run! rollback! states) ;; restore to origin from "start-with"
|
(dorun (map rollback! states)) ;; restore to origin from "start-with"
|
||||||
{:stopped stopped}))
|
{:stopped stopped}))
|
||||||
|
|
||||||
(defn start-with-args [xs & states]
|
(defn start-with-args [xs & states]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue