From aeb9d11594750eec085af60d6bee1ed86dd14686 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 20 Apr 2020 21:21:42 +0900 Subject: Revert irrelevant change [ci skip] --- tool/sync_default_gems.rb | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'tool') diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb index ddbce8da7b..d034e723a4 100644 --- a/tool/sync_default_gems.rb +++ b/tool/sync_default_gems.rb @@ -374,15 +374,11 @@ def sync_default_gems_with_commits(gem, range) if result.empty? skipped = true - elsif /^CONFLICT/ =~ result + elsif result.start_with?("CONFLICT") result = IO.popen(%W"git status --porcelain", &:readlines).each(&:chomp!) - ignore = result.map {|line| /^.U / =~ line and IGNORE_FILE_PATTERN =~ (name = $') and name} + ignore = result.map {|line| /^DU / =~ line and IGNORE_FILE_PATTERN =~ (name = $') and name} ignore.compact! - warn "Resetting #{ignore}" - unless ignore.empty? - system(*%W"git reset HEAD --", *ignore) - system(*%W"git checkout HEAD --", *ignore) - end + system(*%W"git reset", *ignore) unless ignore.empty? skipped = !system({"GIT_EDITOR"=>"true"}, *%W"git cherry-pick --no-edit --continue") end -- cgit v1.2.3