We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4574e16 commit b217d8cCopy full SHA for b217d8c
src/commands/pod_install.yml
@@ -20,8 +20,8 @@ steps:
20
steps:
21
- restore_cache:
22
keys:
23
- - {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}
24
- - {{ .Environment.CACHE_VERSION }}-cache-pods
+ - '{{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}'
+ - '{{ .Environment.CACHE_VERSION }}-cache-pods'
25
- run:
26
name: Install CocoaPods
27
command: |
@@ -32,4 +32,4 @@ steps:
32
- save_cache:
33
paths:
34
- <<parameters.pod_install_directory>>/Pods
35
- key: {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}
+ key: '{{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}'
0 commit comments