diff --git a/src/commands/pod_install.yml b/src/commands/pod_install.yml index 39dcf23..f633ce1 100644 --- a/src/commands/pod_install.yml +++ b/src/commands/pod_install.yml @@ -9,6 +9,10 @@ parameters: type: string default: "ios" description: The location of the "ios" directory + pod_install_command: + type: string + default: "pod install" + description: The command to run to install pods cache: description: Save and restore the cache? Defaults to true type: boolean @@ -25,7 +29,7 @@ steps: - run: name: Install CocoaPods command: | - cd <> && pod install && cd - + cd <> && eval <> && cd - - when: condition: <> steps: