Fix case pattern for directory ownership and permissions

This commit is contained in:
clsferguson 2025-09-11 13:21:13 -06:00 committed by GitHub
parent 18bca70c8f
commit 327d7ea37f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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