Skip to content

Commit 631bf19

Browse files
committed
Skip Onigmo file sync. This target is only for commit sync.
1 parent ed11623 commit 631bf19

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

tool/sync_default_gems.rb

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -861,13 +861,10 @@ def update_default_gems(gem, release: false)
861861
REPOSITORIES.each_key {|gem| update_default_gems(gem)}
862862
end
863863
when "all"
864-
if ARGV[1] == "release"
865-
REPOSITORIES.each_key do |gem|
866-
update_default_gems(gem, release: true)
867-
sync_default_gems(gem)
868-
end
869-
else
870-
REPOSITORIES.each_key {|gem| sync_default_gems(gem)}
864+
REPOSITORIES.each_key do |gem|
865+
next if ["Onigmo"].include?(gem)
866+
update_default_gems(gem, release: true) if ARGV[1] == "release"
867+
sync_default_gems(gem)
871868
end
872869
when "list"
873870
ARGV.shift

0 commit comments

Comments
 (0)