summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-01-10 23:31:04 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-01-10 23:31:04 +0900
commitbe1db1ca5cce4f2a6e64958e9f36e8b2ba907168 (patch)
treed3bdf4d9d1ba6ed996cd3b61a3995ef163c56006 /tool
parent2861c8deafe5e513fc59048198cbe70359d0f16d (diff)
Just ignore empty lines in bundled_gems file [ci skip]
Diffstat (limited to 'tool')
-rwxr-xr-xtool/fetch-bundled_gems.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/fetch-bundled_gems.rb b/tool/fetch-bundled_gems.rb
index 8d04892b70..cb59b326ba 100755
--- a/tool/fetch-bundled_gems.rb
+++ b/tool/fetch-bundled_gems.rb
@@ -10,6 +10,7 @@ BEGIN {
n, v, u, r = $F
+next unless n
next if n =~ /^#/
if File.directory?(n)