]> cat aescling's git repositories - mastodon.git/commitdiff
Set bundle config in local file, and set path (#14351)
authorDavid Cook <divergentdave@gmail.com>
Sat, 18 Jul 2020 17:00:59 +0000 (12:00 -0500)
committerGitHub <noreply@github.com>
Sat, 18 Jul 2020 17:00:59 +0000 (19:00 +0200)
.circleci/config.yml

index 9f43a057356bbb2cdf066b3b1c3cf166531d4707..862fa126b7f084475491da51389b53c505d4aa11 100644 (file)
@@ -72,11 +72,12 @@ aliases:
         - run:
             name: Set bundler settings
             command: |
-              bundle config clean 'true'
-              bundle config deployment 'true'
-              bundle config with 'pam_authentication'
-              bundle config without 'development production'
-              bundle config frozen 'true'
+              bundle config --local clean 'true'
+              bundle config --local deployment 'true'
+              bundle config --local with 'pam_authentication'
+              bundle config --local without 'development production'
+              bundle config --local frozen 'true'
+              bundle config --local path $BUNDLE_PATH
         - run:
             name: Install bundler dependencies
             command: bundle check || (bundle install && bundle clean)