Disable :checksum-deps when writing shell wrappers.

This commit is contained in:
Phil Hagelberg 2011-11-12 12:44:55 -08:00
parent 9c94368393
commit b8bdde841a
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View file

@ -10,4 +10,5 @@ autodoc/
bin/nom
.lein-failures
/lein.man
/scratch.clj
/scratch.clj
.lein-deps-sum

View file

@ -203,7 +203,7 @@ function in that namespace will be used as the main-class for executable jar."
([project jar-name]
(when jar-name
(println "WARNING: Using the jar task with an argument is deprecated."))
(let [deps-fileset (deps project)
(let [deps-fileset (deps (assoc project :checksum-deps false))
status (compile/compile project)]
(if (zero? status)
(let [jar-path (get-jar-filename project (get-default-jar-name project))]