We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14aa6db commit 00f6b7cCopy full SHA for 00f6b7c
Rakefile
@@ -1182,7 +1182,7 @@ def previous_tag(current_version, language = nil)
1182
else
1183
minor_version = (version[1].to_i - 1)
1184
tags = @git.tags.map(&:name)
1185
- tag = language ? tags.reverse.find { |tag| tag.match?(/selenium-4\.#{minor_version}.*-#{language}/) } : nil
+ tag = language ? tags.reverse.find { |t| t.match?(/selenium-4\.#{minor_version}.*-#{language}/) } : nil
1186
tag || "selenium-#{[[version[0]], minor_version, '0'].join('.')}"
1187
end
1188
0 commit comments