From 327d7ea37f492bf67ef7d1cc7a5788b575e4315b Mon Sep 17 00:00:00 2001 From: clsferguson <48876201+clsferguson@users.noreply.github.com> Date: Thu, 11 Sep 2025 13:21:13 -0600 Subject: [PATCH] Fix case pattern for directory ownership and permissions --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7004b270c..d79be3258 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -61,7 +61,7 @@ PY ) for d in "${PY_PATHS[@]}"; do case "$d" in - /usr/local/*) + /usr/local|/usr/local/*) mkdir -p "$d" || true chown -R "${APP_USER}:${APP_GROUP}" "$d" || true chmod -R u+rwX,g+rwX "$d" || true