|
@@ -139,7 +139,9 @@ def copyFromServer(fb,r,setup,names):
|
|
|
localDir=os.path.join(tempDir,code)
|
|
|
if not os.path.isdir(localDir):
|
|
|
os.makedirs(localDir)
|
|
|
- localPath=os.path.join(localDir,n)
|
|
|
+ #n may contain slash, and localPath should be without it
|
|
|
+ fName=n[n.rfind('/')+1:]
|
|
|
+ localPath=os.path.join(localDir,fName)
|
|
|
if os.path.isfile(localPath) and not forceReload:
|
|
|
continue
|
|
|
remotePath='{}/{}'.format(remoteDir,n)
|
|
@@ -148,7 +150,8 @@ def copyFromServer(fb,r,setup,names):
|
|
|
def getLocalPath(r,setup,name):
|
|
|
tempDir=config.getTempDir(setup)
|
|
|
code=config.getCode(r,setup)
|
|
|
- return os.path.join(tempDir,code,name)
|
|
|
+ fileName=name[name.rfind('/')+1:]
|
|
|
+ return os.path.join(tempDir,code,fileName)
|
|
|
|
|
|
def getURL(fb,r,setup,name):
|
|
|
remoteDir=fb.buildPathURL(setup['project'],config.getPathList(r,setup))
|