Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/commands/pod_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,7 +29,7 @@ steps:
- run:
name: Install CocoaPods
command: |
cd <<parameters.pod_install_directory>> && pod install && cd -
cd <<parameters.pod_install_directory>> && eval <<parameters.pod_install_command>> && cd -
- when:
condition: <<parameters.cache>>
steps:
Expand Down