What changed, and why it matters
This commit fixes a spelling mistake in an error message inside a maintainer helper script. The message previously said 'cargo-rmbt' when it should have said 'cargo-rbmt'. There is no change to program behavior, no security fix, and no risk to users of the library.
No action needed; this is a documentation/typo-only change with no security relevance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
A one-character typo correction in contrib/ensure-maintainer-tools.sh: the echoed error string now matches the actual command name checked by command -v cargo-rbmt. The script logic, exit behavior, and installation instructions are unchanged.
Changed components
contrib/ensure-maintainer-tools.shInspect captured patch +1 / −1
diff --git a/contrib/ensure-maintainer-tools.sh b/contrib/ensure-maintainer-tools.sh
index e0d26fba..ecb29dc3 100755
--- a/contrib/ensure-maintainer-tools.sh
+++ b/contrib/ensure-maintainer-tools.sh
@@ -9,7 +9,7 @@ REPO_DIR=$(git rev-parse --show-toplevel)
cd "$REPO_DIR"
if ! command -v cargo-rbmt >/dev/null 2>&1; then
- echo "Error: cargo-rmbt is required for maintainer tools but not found in PATH" >&2
+ echo "Error: cargo-rbmt is required for maintainer tools but not found in PATH" >&2
echo "Please ensure it's available in your environment or install cargo-rbmt using:" >&2
echo "cargo +stable install --git https://github.com/rust-bitcoin/rust-bitcoin-maintainer-tools.git --rev \"$(cat "$REPO_DIR/rbmt-version")\" cargo-rbmt --locked" >&2
exit 1
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.