make 'build' directories when deploying 'conf'
modified: modules/conf_setup.py
This commit is contained in:
parent
759639cf1f
commit
38149330bc
1 changed files with 5 additions and 0 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue