auto: docs sync 2026-07-13T06:00:09+00:00
Files changed: engine/lint-report.md engine/sweep.sh
This commit is contained in:
parent
6becc3c5c3
commit
7931172cb7
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue