From d15769fb3e94c4e1715c2b0f1fab0e1eb2737098 Mon Sep 17 00:00:00 2001 From: Benjamin Handanyan Date: Wed, 15 Nov 2023 16:47:21 -0500 Subject: [PATCH] feat: support a custom pod install command --- src/commands/pod_install.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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: