8 lines
138 B
Bash
8 lines
138 B
Bash
#!/bin/bash
|
|
# Auto-update documentation on commit
|
|
set -e
|
|
|
|
python3 scripts/update_docs.py
|
|
|
|
git add README.md AGENTS.md 2>/dev/null || true
|