From 5e6d7d297fe8ff2c62967b304dbe814de456298a Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Wed, 23 Sep 2026 23:34:29 -0400 Subject: [PATCH] Use .tar.gz on Linuxbrew, it's not free --- .github/scripts/update-homebrew-formula.sh | 4 ++-- brew/celq.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/update-homebrew-formula.sh b/.github/scripts/update-homebrew-formula.sh index 35530d5..4a1e017 100644 --- a/.github/scripts/update-homebrew-formula.sh +++ b/.github/scripts/update-homebrew-formula.sh @@ -23,8 +23,8 @@ echo "Temporary directory: $TEMP_DIR" declare -A DOWNLOADS=( ["macos-aarch64"]="celq-macos-aarch64.tar.zst" ["macos-x86_64"]="celq-macos-x86_64.tar.gz" - ["linux-x86_64-gnu"]="celq-linux-x86_64-gnu.tar.zst" - ["linux-aarch64-gnu"]="celq-linux-aarch64-gnu.tar.zst" + ["linux-x86_64-gnu"]="celq-linux-x86_64-gnu.tar.gz" + ["linux-aarch64-gnu"]="celq-linux-aarch64-gnu.tar.gz" ) declare -A CHECKSUMS diff --git a/brew/celq.rb b/brew/celq.rb index 4aca412..b86068e 100644 --- a/brew/celq.rb +++ b/brew/celq.rb @@ -17,11 +17,11 @@ class Celq < Formula if OS.linux? if Hardware::CPU.arm? - url "https://github.com/IvanIsCoding/celq/releases/download/v{{CELQ_VERSION}}/celq-linux-aarch64-gnu.tar.zst" + url "https://github.com/IvanIsCoding/celq/releases/download/v{{CELQ_VERSION}}/celq-linux-aarch64-gnu.tar.gz" sha256 "{{CELQ_SHA256_LINUX_ARM64}}" end if Hardware::CPU.intel? - url "https://github.com/IvanIsCoding/celq/releases/download/v{{CELQ_VERSION}}/celq-linux-x86_64-gnu.tar.zst" + url "https://github.com/IvanIsCoding/celq/releases/download/v{{CELQ_VERSION}}/celq-linux-x86_64-gnu.tar.gz" sha256 "{{CELQ_SHA256_LINUX_X86_64}}" end end