summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2024-09-26 18:44:03 +0200
committergit <svn-admin@ruby-lang.org>2024-09-30 05:08:25 +0000
commitdbe69a466f71b5f0e4057d48e13686914ffcec32 (patch)
tree46c22f818da978050064e37043450c4f42a46bfb
parent060932af989831f31c562781385100f196d63d4d (diff)
[rubygems/rubygems] I _think_ this workaround is no longer necessary
https://github.com/rubygems/rubygems/commit/6a76fedfd0
-rw-r--r--spec/bundler/cache/git_spec.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/bundler/cache/git_spec.rb b/spec/bundler/cache/git_spec.rb
index 88436c79aa..ea91829003 100644
--- a/spec/bundler/cache/git_spec.rb
+++ b/spec/bundler/cache/git_spec.rb
@@ -323,8 +323,6 @@ RSpec.describe "bundle cache with git" do
FileUtils.mkdir_p bundled_app("vendor/cache")
FileUtils.cp_r git_path, bundled_app("vendor/cache/foo-1.0-#{path_revision}")
FileUtils.rm_rf bundled_app("vendor/cache/foo-1.0-#{path_revision}/.git")
- # bundle install with git repo needs to be run under the git environment.
- Dir.chdir(bundled_app) { system(*%W[git init --quiet]) }
bundle :install, env: { "BUNDLE_DEPLOYMENT" => "true", "BUNDLE_CACHE_ALL" => "true" }
end