We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 195daab + cea9358 commit 4bd48bcCopy full SHA for 4bd48bc
Formula/l/llama.cpp.rb
@@ -8,9 +8,14 @@ class LlamaCpp < Formula
8
license "MIT"
9
head "https://github.com/ggerganov/llama.cpp.git", branch: "master"
10
11
+ # llama.cpp publishes new tags too often
12
+ # Having multiple updates in one day is not very convenient
13
+ # Update formula only after 10 new tags (1 update per ≈2 days)
14
+ #
15
+ # `trottle 10` doesn't work
16
livecheck do
17
url :stable
- regex(/^v?b(\d+(?:\.\d+)*)$/i)
18
+ regex(/^v?b(\d+(?:\.\d+)*0)$/i)
19
end
20
21
bottle do
0 commit comments