Commit 14d16aa714683adbf942a2ebf77f4e82e40c54d2

Authored by Göran Krampe
1 parent 386557e6

Now the git filter handles paths properly

Showing 1 changed file with 1 additions and 1 deletions
blimp.nim
@@ -247,7 +247,7 @@ proc computeBlimpFilename(filename: string): string = @@ -247,7 +247,7 @@ proc computeBlimpFilename(filename: string): string =
247 except: 247 except:
248 quit("Failed opening file: " & filename, 1) 248 quit("Failed opening file: " & filename, 1)
249 let hash = getMD5(content) 249 let hash = getMD5(content)
250 - result = filename & "-" & hash 250 + result = extractFilename(filename) & "-" & hash
251 251
252 # Copy original file to blimpStore and replace with hash stub in git. 252 # Copy original file to blimpStore and replace with hash stub in git.
253 proc deflate(filename: string) = 253 proc deflate(filename: string) =