From c1c89916ce25ef358ea9aeebe70b416a6a4819c5 Mon Sep 17 00:00:00 2001 From: casjay Date: Thu, 30 Jul 2026 18:59:41 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20repo=20cleanup=20=F0=9F=93=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TODO.AI.md --- TODO.AI.md | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 TODO.AI.md diff --git a/TODO.AI.md b/TODO.AI.md deleted file mode 100644 index f67a185..0000000 --- a/TODO.AI.md +++ /dev/null @@ -1,17 +0,0 @@ -# TODO.AI.md - -## script-lint findings in rootfs/usr/local/bin/entrypoint.sh (pre-existing, not fixed yet) - -Found while lint-checking the START_SERVICES gate fix (commit that changed -`if [ "$START_SERVICES" = "yes" ] || [ -z "$1" ]; then` to `if [ -z "$1" ]; then`). -These predate that change and are out of scope for it — this file is regenerated -wholesale from the upstream template in AI.md Step 2, so the same issues likely -exist in the template itself and in every other dockersrc/casjaysdevdocker repo -built from it. - -- [ ] line 553 (`cron` case handler): bare `exit` with no code — use `exit 0`, - `exit 1`, or `exit "$?"` to be explicit -- [ ] line 652 (`start` case handler): bare `exit` with no code — same fix -- [ ] script header `##@Version 202607082023-git` has no matching `VERSION=` - assignment in the script body — add `VERSION="202607082023-git"` after the - header block to satisfy the version-stamp rule