From 4ef40bc53f7e7465ce48b223eaa206f02b6f4142 Mon Sep 17 00:00:00 2001 From: Alex Jurkiewicz Date: Tue, 28 Apr 2026 09:57:49 +0800 Subject: [PATCH] feat: disable spacectl formula in favour of cask The spacectl formula was silently deleted in March 2026 when GoReleaser switched to publishing a cask. Re-add it with disable! so users who have the formula installed get a clear error pointing them to the cask. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- spacectl.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 spacectl.rb diff --git a/spacectl.rb b/spacectl.rb new file mode 100644 index 0000000..c45c91f --- /dev/null +++ b/spacectl.rb @@ -0,0 +1,11 @@ +# typed: false +# frozen_string_literal: true + +class Spacectl < Formula + desc "Spacelift client and CLI" + homepage "https://github.com/spacelift-io/spacectl" + version "1.18.3" + license "MIT" + + disable! date: "2026-03-05", because: "has been replaced by the spacectl cask", replacement_cask: "spacectl" +end