added apigee script debug mode
diff --git a/tasks/main.yml b/tasks/main.yml
index f4984d1..aac1d5b 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_installation_home }}/{{ component_name | default('') }}"
       contains: '^{{ bash_regex }}'
       file_type: file
       recurse: yes
@@ -23,7 +23,7 @@
 - block:
   - name: Collect all bash scripts to unset debug mode
     find:
-      paths: '{{ apigee_installation_home }}/{{ component_name | default('') }}'
+      paths: "{{ apigee_installation_home }}/{{ component_name | default('') }}"
       contains: '^{{ bash_regex }} -x'
     register: debug_scripts