shellcheck

This commit is contained in:
Min Idzelis 2025-05-02 00:00:00 +00:00
parent 376939fd71
commit 8c1cddbd8c
3 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash
# shellcheck source=common.sh
# shellcheck disable=SC1091
source /immich-devcontainer/common.sh
sudo find "${IMMICH_WORKSPACE}/server/upload" -not -path "${IMMICH_WORKSPACE}/server/upload/postgres/*" -not -path "${IMMICH_WORKSPACE}/server/upload/postgres" -exec chown node {} +

View File

@ -1,5 +1,6 @@
#!/bin/bash
# shellcheck source=common.sh
# shellcheck disable=SC1091
source /immich-devcontainer/common.sh
echo "Starting Nest API Server"

View File

@ -1,5 +1,6 @@
#!/bin/bash
# shellcheck source=common.sh
# shellcheck disable=SC1091
source /immich-devcontainer/common.sh
until curl --output /dev/null --silent --head --fail "http://127.0.0.1:${IMMICH_PORT}/api/server/config"; do