diff --git a/.devcontainer/server/postCreate.sh b/.devcontainer/server/postCreate.sh index 93794661e8..2ad1fc1109 100755 --- a/.devcontainer/server/postCreate.sh +++ b/.devcontainer/server/postCreate.sh @@ -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 {} + diff --git a/.devcontainer/server/startNestApiServer.sh b/.devcontainer/server/startNestApiServer.sh index 111239d6f5..2fc81a8060 100755 --- a/.devcontainer/server/startNestApiServer.sh +++ b/.devcontainer/server/startNestApiServer.sh @@ -1,5 +1,6 @@ #!/bin/bash # shellcheck source=common.sh +# shellcheck disable=SC1091 source /immich-devcontainer/common.sh echo "Starting Nest API Server" diff --git a/.devcontainer/server/startViteWebServer.sh b/.devcontainer/server/startViteWebServer.sh index 4dae803fea..97ed950aa8 100755 --- a/.devcontainer/server/startViteWebServer.sh +++ b/.devcontainer/server/startViteWebServer.sh @@ -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