From c28e6be14d141c6d107e192a697c6a0ba54c75f5 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 18 Dec 2025 19:03:17 -0600 Subject: [PATCH 1/2] registry: add github backend for schemacrawler (github:schemacrawler/SchemaCrawler) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- registry.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/registry.toml b/registry.toml index 5ed49eeebd..625896d419 100644 --- a/registry.toml +++ b/registry.toml @@ -3866,8 +3866,9 @@ description = "sccache is ccache with cloud storage" test = ["sccache --version", "sccache {{version}}"] [tools.schemacrawler] -backends = ["asdf:mise-plugins/mise-schemacrawler"] +backends = ["github:schemacrawler/SchemaCrawler"] description = "Free database schema discovery and comprehension tool" +test = ["schemacrawler --version", "SchemaCrawler {{version}}"] [tools.scie-pants] backends = ["github:pantsbuild/scie-pants", "asdf:robzr/asdf-scie-pants"] From 510ecd659c3e353d63c948701ebfa8c0f8e42dd3 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 18 Dec 2025 19:37:50 -0600 Subject: [PATCH 2/2] fix: use schemacrawler.sh as exe name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The binary in the release is named schemacrawler.sh, not schemacrawler. Update the exe option and test command accordingly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- registry.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/registry.toml b/registry.toml index 625896d419..b7cb13a8c9 100644 --- a/registry.toml +++ b/registry.toml @@ -3866,9 +3866,9 @@ description = "sccache is ccache with cloud storage" test = ["sccache --version", "sccache {{version}}"] [tools.schemacrawler] -backends = ["github:schemacrawler/SchemaCrawler"] +backends = ["github:schemacrawler/SchemaCrawler[exe=schemacrawler.sh]"] description = "Free database schema discovery and comprehension tool" -test = ["schemacrawler --version", "SchemaCrawler {{version}}"] +test = ["schemacrawler.sh --version", "SchemaCrawler {{version}}"] [tools.scie-pants] backends = ["github:pantsbuild/scie-pants", "asdf:robzr/asdf-scie-pants"]