Skip to content

Commit

Permalink
Merge pull request #196534 from dduugg/rubocop-1.68.0
Browse files Browse the repository at this point in the history
Make compatible with rubocop 1.68.0
  • Loading branch information
BrewTestBot authored Nov 4, 2024
2 parents 0fc6ab2 + 357105e commit 7c518d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Formula/p/portaudio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Portaudio < Formula
regex(/href=.*?pa[._-]stable[._-]v?(\d+)(?:[._-]\d+)?\.t/i)
strategy :page_match do |page, regex|
# Modify filename version (190700) to match formula version (19.7.0)
page.scan(regex).map { |match| match&.first&.scan(/\d{2}/)&.map(&:to_i)&.join(".") }
page.scan(regex).map { |match| match[0].scan(/\d{2}/).map(&:to_i).join(".") }
end
end

Expand Down
2 changes: 1 addition & 1 deletion Formula/u/util-linux.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def caveats

flags = ["x", "w", "r"] * 3
perms = flags.each_with_index.reduce("") do |sum, (flag, index)|
sum.insert 0, ((stat.mode & (2 ** index)).zero? ? "-" : flag)
sum.insert 0, (stat.mode.nobits?(2 ** index) ? "-" : flag)
end

out = shell_output("#{bin}/namei -lx /usr").split("\n").last.split
Expand Down

0 comments on commit 7c518d7

Please sign in to comment.