[CircleCI] Add option to `bundle check` in Xcode job
This caused executing `bundle install` even if the Gemfile's dependencies are satisfied.
This commit is contained in:
parent
e2dc1b6dcb
commit
7b3682a16c
|
@ -16,7 +16,7 @@ aliases:
|
|||
- run: echo "ruby-2.3" > ~/.ruby-version
|
||||
- restore_cache:
|
||||
key: 1-gems-{{ checksum "Gemfile.lock" }}
|
||||
- run: bundle check || bundle install --path vendor/bundle
|
||||
- run: bundle check --path vendor/bundle || bundle install --path vendor/bundle
|
||||
- save_cache:
|
||||
key: 1-gems-{{ checksum "Gemfile.lock" }}
|
||||
paths:
|
||||
|
|
Loading…
Reference in New Issue