More robust eclipse workspace replacement
This commit is contained in:
parent
1812016e29
commit
238dcdd18d
1 changed files with 4 additions and 0 deletions
|
@ -701,6 +701,10 @@ def setup_mcp(fml_dir, mcp_dir, dont_gen_conf=True):
|
|||
#update workspace
|
||||
if not os.path.isfile(os.path.join(fml_dir, 'fmlbuild.properties-sample')):
|
||||
mcp_eclipse = os.path.join(mcp_dir, 'eclipse')
|
||||
|
||||
if os.path.isdir(os.path.join(mcp_eclipse, 'Client')) and os.path.isdir(os.path.join(eclipse_dir, 'Server')):
|
||||
shutil.rmtree(mcp_eclipse)
|
||||
|
||||
if not os.path.isdir(mcp_eclipse) and os.path.isdir(os.path.join(fml_dir, 'eclipse')):
|
||||
print 'Fixing MCP Workspace'
|
||||
copytree(os.path.join(fml_dir, 'eclipse'), mcp_eclipse)
|
||||
|
|
Loading…
Reference in a new issue