diff --git a/Formula/catwalk.rb b/Formula/catwalk.rb index 5d282ca..5976baa 100644 --- a/Formula/catwalk.rb +++ b/Formula/catwalk.rb @@ -6,6 +6,11 @@ class Catwalk < Formula license "MIT" head "https://github.com/catppuccin/toolbox.git", branch: "main" + livecheck do + url :stable + regex(/^catwalk[._-]v?(\d+(?:\.\d+)+)$/i) + end + bottle do root_url "https://ghcr.io/v2/catppuccin/tap" sha256 cellar: :any_skip_relocation, ventura: "20a88a941680a641a88bff0d6e5ebdde2d1f8d8efc7e4db0ae91ef70bb8388ee" @@ -23,9 +28,4 @@ def install test do assert_predicate (bin/"catwalk"), :exist? end - - livecheck do - url :stable - regex /^catwalk[._-]v?(\d+(?:\.\d+)+)$/i - end end diff --git a/Formula/whiskers.rb b/Formula/whiskers.rb index 5257e06..0be09a0 100644 --- a/Formula/whiskers.rb +++ b/Formula/whiskers.rb @@ -6,6 +6,11 @@ class Whiskers < Formula license "MIT" head "https://github.com/catppuccin/toolbox.git", branch: "main" + livecheck do + url :stable + regex(/^whiskers[._-]v?(\d+(?:\.\d+)+)$/i) + end + bottle do root_url "https://ghcr.io/v2/catppuccin/tap" sha256 cellar: :any_skip_relocation, ventura: "4a2a601b29006a787bf46a5e3e7b1d1616f0dfbf62870ce1cd96830376d70340" @@ -21,9 +26,4 @@ def install test do assert_predicate (bin/"whiskers"), :exist? end - - livecheck do - url :stable - regex /^whiskers[._-]v?(\d+(?:\.\d+)+)$/i - end end