Skip to content

Commit f91fdc1

Browse files
committed
Remove proprietary references from public-facing text
1 parent 69dcb73 commit f91fdc1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.githooks/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fi
3030
VIOLATIONS=$(grep -rn "KBBI\|kbbi\|harmorph_stemmer" src/ tests/ benches/ examples/ README.md Cargo.toml 2>/dev/null || true)
3131
if [ -n "$VIOLATIONS" ]; then
3232
echo "$VIOLATIONS"
33-
fail "Proprietary references found — remove before committing to public repo"
33+
fail "Proprietary references found (dictionary references, old package name) — remove before committing to public repo"
3434
fi
3535
pass "proprietary reference guard"
3636

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ build:
2929
guard:
3030
@echo "Scanning for proprietary references..."
3131
@if grep -rn "KBBI\|kbbi\|harmorph_stemmer" src/ tests/ benches/ examples/ README.md Cargo.toml 2>/dev/null; then \
32-
echo "ERROR: Proprietary references found"; exit 1; \
32+
echo "ERROR: Proprietary references found (check for dictionary references, old package name)"; exit 1; \
3333
else \
3434
echo "OK: No proprietary references found"; \
3535
fi

0 commit comments

Comments
 (0)