MCPcopy Create free account
hub / github.com/Syncplay/syncplay / prepareInstallListTemplate

Method prepareInstallListTemplate

buildPy2exe.py:580–586  ·  view source on GitHub ↗
(self, fileList)

Source from the content-addressed store, hash-verified

578 return fileList, totalSize
579
580 def prepareInstallListTemplate(self, fileList):
581 create = []
582 for dir_ in fileList.keys():
583 create.append('SetOutPath "$INSTDIR\\{}"'.format(dir_))
584 for file_ in fileList[dir_]:
585 create.append('FILE "{}\\{}\\{}"'.format(OUT_DIR, dir_, file_))
586 return "\n".join(create)
587
588 def prepareDeleteListTemplate(self, fileList):
589 delete = []

Callers 1

createMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected