From 1cd4db772c164ade7a4bd03e5859d3bea84a4194 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 8 Jan 2023 21:02:38 +0900 Subject: Adjust spec of bundler like as `sync_default_gems` [ci skip] --- tool/sync_default_gems.rb | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'tool/sync_default_gems.rb') diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index 74125557eb..81dbc1f631 100755 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -540,11 +540,22 @@ module SyncDefaultGems end next if skipped + case gem + when "rubygems" + %w[bundler/spec/support/artifice/vcr_cassettes].each do |rem| + if File.exist?(rem) + system("git", "reset", rem) + rm_rf(rem) + end + end + system(*%w[git add spec/bundler]) + end + if result.empty? skipped = true elsif /^CONFLICT/ =~ result result = pipe_readlines(%W"git status --porcelain -z") - result.map! {|line| line[/\A(?:.U|AA) (.*)/, 1]} + result.map! {|line| line[/\A(?:.U|[UA]A) (.*)/, 1]} result.compact! ignore, conflict = result.partition {|name| IGNORE_FILE_PATTERN =~ name} unless ignore.empty? -- cgit v1.2.3