diff --git a/Gemfile.lock b/Gemfile.lock index e2d59c276..819f54253 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - shipit-engine (0.43.3) + shipit-engine (0.43.4) active_model_serializers (~> 0.9.3) ansi_stream (~> 0.0.6) autoprefixer-rails (~> 6.4.1) diff --git a/app/models/shipit/deploy_spec/bundler_discovery.rb b/app/models/shipit/deploy_spec/bundler_discovery.rb index 806cc1cb4..1642b616b 100644 --- a/app/models/shipit/deploy_spec/bundler_discovery.rb +++ b/app/models/shipit/deploy_spec/bundler_discovery.rb @@ -55,7 +55,7 @@ def bundle_config_frozen end def bundle_without_groups - "bundle config set without '#{bundler_without.join(':')}'" + "bundle config set --local without '#{bundler_without.join(':')}'" end def frozen_mode? diff --git a/lib/shipit/version.rb b/lib/shipit/version.rb index f83817535..ce9ff0cc3 100644 --- a/lib/shipit/version.rb +++ b/lib/shipit/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Shipit - VERSION = '0.43.3' + VERSION = '0.43.4' end diff --git a/test/models/deploy_spec_test.rb b/test/models/deploy_spec_test.rb index 128431e17..e492331ec 100644 --- a/test/models/deploy_spec_test.rb +++ b/test/models/deploy_spec_test.rb @@ -71,7 +71,7 @@ class DeploySpecTest < ActiveSupport::TestCase --retry 2 ).gsub(/\s+/, ' ').strip config_command = "bundle config set --local path #{@spec.bundle_path}" - without_command = "bundle config set without 'default:production:development:test:staging:benchmark:debug'" + without_command = "bundle config set --local without 'default:production:development:test:staging:benchmark:debug'" assert_equal command, @spec.bundle_install.last assert @spec.bundle_install.include?(config_command) @@ -87,7 +87,7 @@ class DeploySpecTest < ActiveSupport::TestCase --retry 2 ).gsub(/\s+/, ' ').strip assert_equal command, @spec.bundle_install.last - without_command = "bundle config set without 'some:custom:groups'" + without_command = "bundle config set --local without 'some:custom:groups'" assert @spec.bundle_install.include?(without_command) end