10 lines
249 B
Bash
10 lines
249 B
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
if [ -n "${TRIM_TEMP_LOGFILE:-}" ]; then
|
|
printf '%s\n' "ImageFind 0.5.45 使用 PostgreSQL 数据层;本版本不执行旧数据迁移(包括 SQLite)。" \
|
|
>>"$TRIM_TEMP_LOGFILE" 2>/dev/null || true
|
|
fi
|
|
|
|
exit 0
|