Commit 612c101e authored by daidekun's avatar daidekun

fixbugs

parent fc512450
......@@ -36,7 +36,11 @@ def prepare_luaui(systemNames, contextDir) {
sh "cp -rf /home/quant_group/qg-dockerfiles/templates/lua-ui ${contextDir}"
sh "cd /home/quant_group/config_repository/lua-ui; git pull; cd -"
sh "cp -rf /home/quant_group/config_repository/lua-ui/lua/*.lua ${contextDir}"
sh "cp -rf /home/quant_group/config_repository/lua-ui/${systemNames}.vh.conf ${contextDir}"
if (systemNames.contains("--")) {
sh "cp -rf /home/quant_group/config_repository/lua-ui/${systemNames}.vh.conf ${contextDir}"
} else {
sh "cp -rf /home/quant_group/config_repository/lua-ui/default.vh.conf ${contextDir}"
}
arrSystem = systemNames.split("--")
for (systemName in arrSystem) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment