summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-06-18 14:48:15 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-06-18 14:48:15 -0400
commit00c42cd6d2e9080f740248b37604e85b8dd2964d (patch)
tree447301587346be52992617bf1fcd02655fd1ea30
parentd159859049e2354bd16308a71038e6e6e44a1f53 (diff)
missed another hash-object call, disable filtering there too
-rw-r--r--Git/HashObject.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Git/HashObject.hs b/Git/HashObject.hs
index 808e527a3..c6e1d2349 100644
--- a/Git/HashObject.hs
+++ b/Git/HashObject.hs
@@ -40,4 +40,4 @@ hashObject objtype content repo = getSha subcmd $
pipeWriteRead (map Param params) content repo
where
subcmd = "hash-object"
- params = [subcmd, "-t", show objtype, "-w", "--stdin"]
+ params = [subcmd, "-t", show objtype, "-w", "--stdin", "--no-filters"]