From 12af03d32f5d6d1582821e8ffe321143d358ce7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 8 Oct 2021 13:06:21 +0200 Subject: [PATCH] `git commit` no longer needs to be allowed to fail --- bundler/spec/support/builders.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundler/spec/support/builders.rb b/bundler/spec/support/builders.rb index 58e4d147dcd2..0ece5ba7f654 100644 --- a/bundler/spec/support/builders.rb +++ b/bundler/spec/support/builders.rb @@ -569,7 +569,7 @@ def _build(options) _default_files[path] += "\n#{Builders.constantize(name)}_PREV_REF = '#{current_ref}'" end super(options.merge(:path => libpath, :gemspec => update_gemspec, :source => source)) - @context.git("commit -am BUMP", libpath, :raise_on_error => false) + @context.git("commit -am BUMP", libpath) end end