auto: docs sync 2026-07-13T06:00:09+00:00

Files changed: engine/lint-report.md engine/sweep.sh
This commit is contained in:
echo6-autocommit 2026-07-13 06:00:09 +00:00
commit 7931172cb7
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# Vault Lint Report
Generated: 2026-07-12T18:00:14Z | Docs scanned: 105 | Elapsed: 0.0s
Generated: 2026-07-13T00:00:34Z | Docs scanned: 105 | Elapsed: 0.0s
## Summary

View file

@ -131,7 +131,7 @@ if [ "$OPT_ALL" -eq 1 ] || [ ! -f "$LAST_SWEEP" ]; then
else
echo " Mode: no .last-sweep marker found — treating as first run (full scan)"
fi
while IFS= read -r -d f; do
while IFS= read -r -d '' f; do
# Skip archive
if [[ "$f" == *"/archive/"* ]]; then
continue
@ -142,7 +142,7 @@ else
LAST_TS="$(cat "$LAST_SWEEP")"
echo " Mode: incremental — docs modified since ${LAST_TS}"
# Compare file mtime to .last-sweep mtime (not contents)
while IFS= read -r -d f; do
while IFS= read -r -d '' f; do
if [[ "$f" == *"/archive/"* ]]; then
continue
fi