Fix manticore seed path logging

This commit is contained in:
Codex
2025-11-17 11:57:49 -06:00
parent 4e2825ffe2
commit 8f69a24d67

View File

@@ -141,8 +141,9 @@ PY
}
seed_manticore_tables() {
local sql_dir="$APP_DIR/manticore"
local sql_dir="${APP_CODE_DIR:-/app/code}/manticore"
if [ ! -d "$sql_dir" ]; then
log "Manticore SQL directory ${sql_dir} missing; skipping table seed"
return
fi
if ! command -v mysql >/dev/null 2>&1; then