submodule-kit 0.2.2

A CLI toolkit for managing git submodules
Documentation
1
2
3
4
5
6
7
8
9
10
cargo fmt --check
cargo clippy -- -D warnings

# Validate README.md is up-to-date with the CLI definition
expected=$(cargo run --quiet -- generate-docs 2>/dev/null)
actual=$(cat README.md 2>/dev/null)
if [ "$expected" != "$actual" ]; then
  echo "error: README.md is out of date. Run: cargo run -- generate-docs > README.md"
  exit 1
fi