Some more TODOs.

This commit is contained in:
Phil Hagelberg 2012-07-17 14:17:50 -07:00
parent ba91c137c7
commit 296adbf1ab
3 changed files with 5 additions and 0 deletions

View file

@ -46,3 +46,6 @@ echo "Also deploy this release of leiningen-core to Clojars."
# git push && git push --tags
# git checkout preview && git reset --hard $RELEASE_VERSION && git push
# Drop version back to SNAPSHOT
# (require 'tentacles.repos)
# (apply + (for [d (tentacles.repos/downloads "technomancy" "leiningen") :when (re-find #"[0-9]-standalone\.jar$" (:name d))] (:download_count d)))

View file

@ -32,6 +32,7 @@
(while true (Thread/sleep Long/MAX_VALUE)))]
(if project
(eval/eval-in-project
;; TODO: don't merge profile for a headless server
(project/merge-profiles project [(:repl (user/profiles) profile)])
server-starting-form
'(do (require 'clojure.tools.nrepl.server)

View file

@ -18,6 +18,7 @@
(let [forms (map rest forms) ;; strip off do
inits (map first forms)
rests (mapcat rest forms)
;; TODO: tasks that assoc :dependencies in will not be honored here
command (eval/shell-command project (concat '(do) inits rests))]
(string/join " " (if (win-batch?)
(map quote-arg command)