Skip to content

Commit 87bead7

Browse files
committed
liquibase: update livecheck
The existing `livecheck` block for `liquibase` is returning an `Unable to get versions` error, as the URL now redirects to https://www.liquibase.com/download-pro and that page links to a Pro tarball instead of the OSS distribution that the formula uses. The OSS download page can be found at https://www.liquibase.com/download-oss but the tarball link is hosted on package.liquibase.com, not GitHub. This resolves the issue by updating the `livecheck` block to simply use the `GithubLatest` strategy, as the formula is using a GitHub release asset.
1 parent f9b369d commit 87bead7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Formula/l/liquibase.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ class Liquibase < Formula
66
license "Apache-2.0"
77

88
livecheck do
9-
url "https://www.liquibase.com/download"
10-
regex(/href=.*?liquibase[._-]v?(\d+(?:\.\d+)+)\.t/i)
9+
url :stable
10+
strategy :github_latest
1111
end
1212

1313
no_autobump! because: :requires_manual_review

0 commit comments

Comments
 (0)