Copy refs in client install
This commit is contained in:
parent
01850f9b96
commit
7fb942cbbf
1 changed files with 5 additions and 0 deletions
|
@ -69,6 +69,11 @@ for category in InstallClientData:
|
||||||
targetBnp = targetPath + "/" + package[1][0]
|
targetBnp = targetPath + "/" + package[1][0]
|
||||||
printLog(log, "TARGET " + package[1][0])
|
printLog(log, "TARGET " + package[1][0])
|
||||||
copyFileIfNeeded(log, sourceBnp, targetBnp)
|
copyFileIfNeeded(log, sourceBnp, targetBnp)
|
||||||
|
for ref in category["Refs"]:
|
||||||
|
printLog(log, "REFERENCE " + ref)
|
||||||
|
sourceRef = sourcePath + "/" + ref + "_.ref"
|
||||||
|
targetRef = targetPath + "/" + ref + "_.ref"
|
||||||
|
copyFileIfNeeded(log, sourceRef, targetRef)
|
||||||
printLog(log, "")
|
printLog(log, "")
|
||||||
|
|
||||||
log.close()
|
log.close()
|
||||||
|
|
Loading…
Reference in a new issue