sync_default_gems.rb: Deal with conflicts on ignored files

that do not exist in the ruby/ruby side.

This resurrects a line that had existed prior to #8329.
This commit is contained in:
Takashi Kokubun 2023-09-01 16:02:23 -07:00
Родитель c666077182
Коммит 00f263e6c4
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -602,6 +602,7 @@ module SyncDefaultGems
unless ignore.empty?
puts "Reset ignored files: #{ignore.join(', ')}"
system(*%W"git rm -r --", *ignore)
system(*%W"git checkout -f", base, "--", *ignore)
end