From 1592cf37e9591cfd59833f488734baf0953835d9 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Tue, 30 Jun 2026 12:34:05 -0400 Subject: [PATCH] Fix deprecated depends_on macos string-comparison format A bare :sequoia symbol already means ">= sequoia", so the ">= :sequoia" string-comparison form is both redundant and deprecated in newer Homebrew, which emits a warning on every tap/install: Calling string comparison format for `depends_on macos:` is deprecated! Use `depends_on macos: :sequoia` instead. --- Casks/hushscribe.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Casks/hushscribe.rb b/Casks/hushscribe.rb index a9fe082..2d9f5cb 100644 --- a/Casks/hushscribe.rb +++ b/Casks/hushscribe.rb @@ -7,7 +7,7 @@ desc "Local meeting transcription and capture for Obsidian vaults" homepage "https://github.com/drcursor/HushScribe" - depends_on macos: ">= :sequoia" + depends_on macos: :sequoia app "HushScribe.app"