Skip to content

Commit

Permalink
Disable :checksum-deps when writing shell wrappers.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Nov 12, 2011
1 parent 9c94368 commit b8bdde8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ autodoc/
bin/nom
.lein-failures
/lein.man
/scratch.clj
/scratch.clj
.lein-deps-sum
2 changes: 1 addition & 1 deletion src/leiningen/jar.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down

0 comments on commit b8bdde8

Please sign in to comment.