Skip to content

Commit

Permalink
Merge pull request #7012 from MahtraDR/repo_01
Browse files Browse the repository at this point in the history
[util][bin/repo] Fix for ruby 3.3
  • Loading branch information
MahtraDR authored Dec 11, 2024
2 parents f5a42c2 + cda04bd commit 57fcc6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/repo
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module Repo
def self.tags(comments)
tags = nil
for line in comments
if line =~ /^[\s\t#]*tags:[\s\t]*([\w,\s\.\d]+)/i
if line.first.to_s =~ /^[\s\t#]*tags:[\s\t]*([\w,\s\.\d]+)/i
tags = $1.strip
break
end
Expand Down

0 comments on commit 57fcc6d

Please sign in to comment.