Skip to content

Commit

Permalink
md5 should sum the contents of files
Browse files Browse the repository at this point in the history
  • Loading branch information
pyr committed Dec 9, 2013
1 parent 37ded95 commit 0b8efcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/leiningen/fatdeb.clj
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"all" ".deb")
deb-file (file (:root project) "target" deb-file-name)]
(write (str deb-file ".md5")
(str (md5 deb-file) " " deb-file-name))))
(str (md5 (slurp deb-file)) " " deb-file-name))))

(defn fatdeb
([project]
Expand Down

0 comments on commit 0b8efcb

Please sign in to comment.