working with quotes and comments
diff --git a/tasks/main.yml b/tasks/main.yml
index 18ff7ed..ef2c812 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -3,7 +3,7 @@
 - block:
   - name: Collect all bash scripts to set debug mode
     find:
-      paths: "{{ apigee_installation_home }}/{{ component_name | default('') }}"
+      paths: "{{ apigee_home }}/{{ component_name | default('') }}"
       contains: '^{{ bash_regex }}'
       file_type: file
       recurse: yes
@@ -22,7 +22,7 @@
 - block:
   - name: Collect all bash scripts to unset debug mode
     find:
-      paths: "{{ apigee_installation_home }}/{{ component_name | default('') }}"
+      paths: "{{ apigee_home }}/{{ component_name | default('') }}"
       contains: '^{{ bash_regex }} -x'
       file_type: file
       recurse: yes