Scripts: Add shellcheck annotations and fix reported issues

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2025-10-07 22:32:31 +02:00
parent ab60112f99
commit 87b540b438
23 changed files with 53 additions and 32 deletions

View File

@@ -120,5 +120,6 @@ fi
PID=$!
trap "kill -USR1 $PID" INT TERM
# shellcheck disable=SC2064 # expand PID now so the trap targets the correct process id
trap "kill -USR1 ${PID}" INT TERM
wait