##// END OF EJS Templates
largefiles: directly use repo.vfs.join...
Pierre-Yves David -
r31332:a5ae1d79 default
parent child Browse files
Show More
@@ -202,7 +202,7 b' def storepath(repo, hash, forcelocal=Fal'
202 file with the given hash.'''
202 file with the given hash.'''
203 if not forcelocal and repo.shared():
203 if not forcelocal and repo.shared():
204 return repo.vfs.reljoin(repo.sharedpath, longname, hash)
204 return repo.vfs.reljoin(repo.sharedpath, longname, hash)
205 return repo.join(longname, hash)
205 return repo.vfs.join(longname, hash)
206
206
207 def findstorepath(repo, hash):
207 def findstorepath(repo, hash):
208 '''Search through the local store path(s) to find the file for the given
208 '''Search through the local store path(s) to find the file for the given
General Comments 0
You need to be logged in to leave comments. Login now