From 14d16aa714683adbf942a2ebf77f4e82e40c54d2 Mon Sep 17 00:00:00 2001 From: Göran Krampe Date: Wed, 19 Nov 2014 02:46:41 +0100 Subject: [PATCH] Now the git filter handles paths properly --- blimp.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blimp.nim b/blimp.nim index d929f29..27383b0 100644 --- a/blimp.nim +++ b/blimp.nim @@ -247,7 +247,7 @@ proc computeBlimpFilename(filename: string): string = except: quit("Failed opening file: " & filename, 1) let hash = getMD5(content) - result = filename & "-" & hash + result = extractFilename(filename) & "-" & hash # Copy original file to blimpStore and replace with hash stub in git. proc deflate(filename: string) = -- libgit2 0.22.2