From cda04bdd6b1a0abf6a853b29084ad084d5576370 Mon Sep 17 00:00:00 2001 From: Mahtra <93822896+MahtraDR@users.noreply.github.com> Date: Wed, 11 Dec 2024 18:05:00 +1300 Subject: [PATCH] [util][bin/repo] Fix for ruby 3.3 --- bin/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/repo b/bin/repo index b9f3b2748..041337535 100755 --- a/bin/repo +++ b/bin/repo @@ -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