From 5cbb4cb8360fce4a90873f31c94bd22a556e7bf9 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Sun, 3 Nov 2024 10:48:00 -0800 Subject: [PATCH 1/2] portaudio: fix style --- Formula/p/portaudio.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/p/portaudio.rb b/Formula/p/portaudio.rb index cd39046198000..a82d5fc6dd92b 100644 --- a/Formula/p/portaudio.rb +++ b/Formula/p/portaudio.rb @@ -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 From 357105ee528cd3b3f15f83eaaa7f01ae5c922f67 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Sun, 3 Nov 2024 10:48:14 -0800 Subject: [PATCH 2/2] util-linux: fix style --- Formula/u/util-linux.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/u/util-linux.rb b/Formula/u/util-linux.rb index ba4dff0ac85ba..7fac9630de777 100644 --- a/Formula/u/util-linux.rb +++ b/Formula/u/util-linux.rb @@ -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