Support spaces in project folder name
This commit is contained in:
parent
31e0d11415
commit
78235a052d
2 changed files with 3 additions and 3 deletions
|
@ -7,9 +7,9 @@
|
|||
delegate_to: localhost
|
||||
become: false
|
||||
|
||||
- name: remove underscores from folder name
|
||||
- name: remove spaces and underscores from folder name
|
||||
set_fact:
|
||||
proj_root_safe: "{{ proj_root.stdout|basename|replace('_','-') }}"
|
||||
proj_root_safe: "{{ proj_root.stdout|basename|replace('_','-')|replace(' ','-') }}"
|
||||
|
||||
# These values are NOT honored by Vagrant, but are still necessary for DrupalVM
|
||||
# See also provisioning/box/config
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue