Skip to content

Commit a2a4d6c

Browse files
committed
chore: get rid of string interpolation in homebrew formula
1 parent fdfc3e7 commit a2a4d6c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

pkg/homebrew/Formula/quickmark-cli.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ class QuickmarkCli < Formula
22
desc "Lightning-fast Markdown/CommonMark linter CLI tool with tree-sitter based parsing"
33
homepage "https://github.com/ekropotin/quickmark"
44
license "MIT"
5-
version "1.1.0"
65

76
on_macos do
87
if Hardware::CPU.intel?
9-
url "https://github.com/ekropotin/quickmark/releases/download/quickmark-cli%40#{version}/qmark-x86_64-apple-darwin.tar.gz"
8+
url "https://github.com/ekropotin/quickmark/releases/download/quickmark-cli%401.1.0/qmark-x86_64-apple-darwin.tar.gz"
109
sha256 "90740f9c0632d8b1da4d00c9c6361c01eb9a72c074641f6952723e6583bbdd8d"
1110
else
12-
url "https://github.com/ekropotin/quickmark/releases/download/quickmark-cli%40#{version}/qmark-aarch64-apple-darwin.tar.gz"
11+
url "https://github.com/ekropotin/quickmark/releases/download/quickmark-cli%401.1.0/qmark-aarch64-apple-darwin.tar.gz"
1312
sha256 "4466f54fd304d34d21dba7871a09d4d24df6c23f7cee48fae1f4a6a1f5466855"
1413
end
1514
end

0 commit comments

Comments
 (0)