Skip to content

Commit 4574e16

Browse files
authored
Merge pull request #142 from fotos/add-missing-cache-version
2 parents 1ec0b4b + b6c7e99 commit 4574e16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/pod_install.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ steps:
2020
steps:
2121
- restore_cache:
2222
keys:
23-
- cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
24-
- cache-pods-
23+
- {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}
24+
- {{ .Environment.CACHE_VERSION }}-cache-pods
2525
- run:
2626
name: Install CocoaPods
2727
command: |
@@ -32,4 +32,4 @@ steps:
3232
- save_cache:
3333
paths:
3434
- <<parameters.pod_install_directory>>/Pods
35-
key: cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}-{{ .Environment.CACHE_VERSION }}
35+
key: {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}

0 commit comments

Comments
 (0)