mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: #1093 Handle leveldesign and primitives directories seperately for the server upload script.
This commit is contained in:
parent
221f5618fb
commit
43b0cf8ad1
1 changed files with 5 additions and 1 deletions
|
@ -166,10 +166,14 @@ printLog(log, ">>> Upload data_common <<<")
|
||||||
for target in UploadCommon:
|
for target in UploadCommon:
|
||||||
uploadSftp(target[0], target[1], target[3], DataCommonDirectory, [ ])
|
uploadSftp(target[0], target[1], target[3], DataCommonDirectory, [ ])
|
||||||
|
|
||||||
printLog(log, ">>> Upload data_leveldesign <<<")
|
printLog(log, ">>> Upload data_leveldesign/leveldesign <<<")
|
||||||
for target in UploadLeveldesign:
|
for target in UploadLeveldesign:
|
||||||
uploadSftp(target[0], target[1], target[3], LeveldesignDirectory, [ ])
|
uploadSftp(target[0], target[1], target[3], LeveldesignDirectory, [ ])
|
||||||
|
|
||||||
|
printLog(log, ">>> Upload data_leveldesign/primitives <<<")
|
||||||
|
for target in UploadPrimitives:
|
||||||
|
uploadSftp(target[0], target[1], target[3], PrimitivesDirectory, [ ])
|
||||||
|
|
||||||
log.close()
|
log.close()
|
||||||
if os.path.isfile("8_upload.log"):
|
if os.path.isfile("8_upload.log"):
|
||||||
os.remove("8_upload.log")
|
os.remove("8_upload.log")
|
||||||
|
|
Loading…
Reference in a new issue