From f8782fe62729acc991482bab0980f217ab5ce68d Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Tue, 5 Jan 2021 00:12:06 +0100 Subject: [PATCH] Fix caching in Travis-CI Wrong syntax. --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e1e0ee6..21bb610a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,13 @@ xcode_workspace: Passepartout.xcworkspace xcode_scheme: PassepartoutCore-iOS xcode_destination: platform=iOS Simulator,OS=12.4,name=iPhone Xs Max cache: - - bundler - - cocoapods + bundler: true + cocoapods: true install: - - bundle install --jobs=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle} - - bundle exec pod repo update - - travis_wait 40 bundle exec pod install + - bundle install --jobs=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle} + - bundle exec pod repo update + - travis_wait 40 bundle exec pod install branches: - only: - - master + only: + - master