Skip to content

Commit

Permalink
[util][bin/repo] Fix for ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtraDR committed Dec 11, 2024
1 parent f5a42c2 commit cda04bd
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 cda04bd

Please sign in to comment.