summaryrefslogtreecommitdiff
path: root/Git/LsTree.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Git/LsTree.hs')
-rw-r--r--Git/LsTree.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Git/LsTree.hs b/Git/LsTree.hs
index a3d8383..ead501f 100644
--- a/Git/LsTree.hs
+++ b/Git/LsTree.hs
@@ -21,7 +21,6 @@ module Git.LsTree (
import Common
import Git
import Git.Command
-import Git.Sha
import Git.FilePath
import qualified Git.Filename
import Utility.Attoparsec
@@ -94,10 +93,10 @@ parserLsTree = TreeItem
<$> octal
<* A8.char ' '
-- type
- <*> A.takeTill (== 32)
+ <*> A8.takeTill (== ' ')
<* A8.char ' '
-- sha
- <*> (Ref . decodeBS' <$> A.take shaSize)
+ <*> (Ref <$> A8.takeTill (== '\t'))
<* A8.char '\t'
-- file
<*> (asTopFilePath . Git.Filename.decode <$> A.takeByteString)