From ed7836385afa809a92c5f2fec9d683c8ff7de333 Mon Sep 17 00:00:00 2001 From: Chris Thompson Date: Wed, 22 Aug 2018 17:04:25 -0400 Subject: [PATCH] Fix the ol 'yaml gotcha'...again --- provisioning/tasks/10-drupal.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/provisioning/tasks/10-drupal.yml b/provisioning/tasks/10-drupal.yml index 101ee93..cdbfd79 100644 --- a/provisioning/tasks/10-drupal.yml +++ b/provisioning/tasks/10-drupal.yml @@ -75,12 +75,12 @@ - name: Install theme build dependencies npm: - path: {{ drupal_core_path }}/themes + path: "{{ drupal_core_path }}/themes" state: present - name: Build theme artifacts command: grunt kss - chdir: {{ drupal_core_path }}/themes + chdir: "{{ drupal_core_path }}/themes" # - name: Ensure ansible is installed