Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ drupalvm_webserver: apache
# would like to configure 'vagrant_synced_folders' and 'apache_vhosts' manually.
build_makefile: false
drush_makefile_path: "{{ config_dir }}/drupal.make.yml"
drush_make_options: "--no-gitinfofile"

# Set 'build_makefile' to 'false' and this to 'true' if you are using a
# composer based site deployment strategy.
Expand Down
2 changes: 1 addition & 1 deletion provisioning/tasks/build-makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

- name: Generate Drupal site with drush makefile.
command: >
{{ drush_path }} make -y /tmp/drupal.make.yml --no-gitinfofile
{{ drush_path }} make -y /tmp/drupal.make.yml {{ drush_make_options }}
chdir={{ drupal_core_path }}
when: not drupal_site_exists
become: no
Expand Down