From ae6ab46fa745c8d2e6998560458ff96575e56609 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sat, 19 Dec 2020 17:10:44 -0700 Subject: [PATCH] Fixed Circle CI configuration for Bundler config path Prevents the following deprecation warning: [DEPRECATED] The `--path` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set path 'vendor/bundle'`, and stop using this flag. --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 277a79d..0971db3 100644 --- a/circle.yml +++ b/circle.yml @@ -48,7 +48,7 @@ jobs: name: Bundler Install command: | gem update --system - bundle install --path vendor/bundle + bundle config set path "vendor/bundle" - type: cache-save name: Bundler Store