From 946ca346ba9ea28eab74af22f413c45d694a2d0e Mon Sep 17 00:00:00 2001 From: r3dbars Date: Thu, 10 Sep 2026 10:53:44 -0500 Subject: [PATCH] fix: use Homebrew macOS symbol dependency --- Casks/transcripted.rb | 2 +- Tests/ReleaseMetadataContractTests.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Casks/transcripted.rb b/Casks/transcripted.rb index 4febd2c0f..b66a745ea 100644 --- a/Casks/transcripted.rb +++ b/Casks/transcripted.rb @@ -15,7 +15,7 @@ auto_updates true depends_on arch: :arm64 - depends_on macos: ">= :tahoe" + depends_on macos: :tahoe app "Transcripted.app" diff --git a/Tests/ReleaseMetadataContractTests.swift b/Tests/ReleaseMetadataContractTests.swift index d376fe942..dd4a01a5b 100644 --- a/Tests/ReleaseMetadataContractTests.swift +++ b/Tests/ReleaseMetadataContractTests.swift @@ -96,7 +96,7 @@ func testReleaseMetadataContract() { "Homebrew cask URL should keep tracking the matching GitHub release asset" ) assertTrue(cask.contains("depends_on arch: :arm64"), "Homebrew cask should keep the arm64 release contract") - assertTrue(cask.contains("depends_on macos: \">= :tahoe\""), "Homebrew cask should stay aligned with the macOS 26+ release floor") + assertTrue(cask.contains("depends_on macos: :tahoe"), "Homebrew cask should use the supported symbol syntax for the macOS 26+ release floor") } runSuite("Release metadata - Sparkle app settings point at the committed appcast") {