normalize URI before hashing

This commit is contained in:
Mark Harrah 2012-03-17 19:31:56 -04:00
parent 7dd2ec74d4
commit 9bebc70ada
1 changed files with 1 additions and 1 deletions

View File

@ -146,5 +146,5 @@ object Resolvers
file
}
def uniqueSubdirectoryFor(uri: URI, in: File) = new File(in, Hash.halfHashString(uri.toASCIIString))
def uniqueSubdirectoryFor(uri: URI, in: File) = new File(in, Hash.halfHashString(uri.normalize.toASCIIString))
}