There was an error while loading. Please reload this page.
2 parents 189ebfb + 122aae6 commit 61db60dCopy full SHA for 61db60d
provisioning/tasks/drupal.yml
@@ -43,12 +43,12 @@
43
- name: Set the custom module directory path for Drupal < 8.
44
set_fact:
45
drupal_custom_modules_path: "{{ drupal_core_path }}/sites/all/modules/custom"
46
- when: drupal_major_version < 8
+ when: drupal_major_version|int < 8
47
48
-- name: Set the custom module directory path for Drupal < 8.
+- name: Set the custom module directory path for Drupal = 8.
49
50
drupal_custom_modules_path: "{{ drupal_core_path }}/modules/custom"
51
- when: drupal_major_version <= 8
+ when: drupal_major_version|int == 8
52
53
- name: Symlink custom modules directory into place.
54
file: >
0 commit comments