updated to use command instead of shell
diff --git a/tasks/main.yml b/tasks/main.yml
index 49c8466..d307428 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -23,9 +23,9 @@
 - block:
 
   - name: Install Apigee Setup
-    command: '{{ apigee_service }} apigee-setup install'
+    shell: '{{ apigee_service }} apigee-setup install'
 
   - name: Install Apigee Admin
-    command: '{{ apigee_service }} apigee-adminapi install'
+    shell: '{{ apigee_service }} apigee-adminapi install'
 
   when: opdk_version | version_compare('4.16', '>=')