We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb4d41b commit d15769fCopy full SHA for d15769f
src/commands/pod_install.yml
@@ -9,6 +9,10 @@ parameters:
9
type: string
10
default: "ios"
11
description: The location of the "ios" directory
12
+ pod_install_command:
13
+ type: string
14
+ default: "pod install"
15
+ description: The command to run to install pods
16
cache:
17
description: Save and restore the cache? Defaults to true
18
type: boolean
@@ -25,7 +29,7 @@ steps:
25
29
- run:
26
30
name: Install CocoaPods
27
31
command: |
28
- cd <<parameters.pod_install_directory>> && pod install && cd -
32
+ cd <<parameters.pod_install_directory>> && eval <<parameters.pod_install_command>> && cd -
33
- when:
34
condition: <<parameters.cache>>
35
steps:
0 commit comments