make 'build' directories when deploying 'conf'

modified:   modules/conf_setup.py
This commit is contained in:
Ronny Abraham 2016-09-06 16:34:43 +03:00
parent 759639cf1f
commit 38149330bc

View file

@ -216,6 +216,11 @@ def deploy_conf():
configuration.tools.fabric.templates.conf,
key)
build_dir = os.path.join(dest_path, 'build')
# also create the destination 'build' directories
# if they do not exist
run("mkdir -p %s" % build_dir)
copy_directories(source_path, dest_path)