Skip to content

Commit

Permalink
fix: quote cache keys that start with special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
fotos committed Feb 26, 2022
1 parent 4574e16 commit b217d8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/pod_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ steps:
steps:
- restore_cache:
keys:
- {{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}
- {{ .Environment.CACHE_VERSION }}-cache-pods
- '{{ .Environment.CACHE_VERSION }}-cache-pods-{{ checksum "<<parameters.pod_install_directory>>/Podfile.lock" }}'
- '{{ .Environment.CACHE_VERSION }}-cache-pods'
- run:
name: Install CocoaPods
command: |
Expand All @@ -32,4 +32,4 @@ steps:
- save_cache:
paths:
- <<parameters.pod_install_directory>>/Pods
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 comments on commit b217d8c

Please sign in to comment.