From 50f0ebbb41e21020312ffcc85356bdc53e525ab5 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Fri, 7 Feb 2014 19:35:55 +0100 Subject: [PATCH] Copy refs in client install --- code/nel/tools/build_gamedata/7_client_install.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/nel/tools/build_gamedata/7_client_install.py b/code/nel/tools/build_gamedata/7_client_install.py index 9087d620b..2bad7fcd2 100644 --- a/code/nel/tools/build_gamedata/7_client_install.py +++ b/code/nel/tools/build_gamedata/7_client_install.py @@ -69,6 +69,11 @@ for category in InstallClientData: targetBnp = targetPath + "/" + package[1][0] printLog(log, "TARGET " + package[1][0]) 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, "") log.close()