mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-04-26 18:32:35 +08:00
Fix case pattern for directory ownership and permissions
This commit is contained in:
parent
18bca70c8f
commit
327d7ea37f
@ -61,7 +61,7 @@ PY
|
|||||||
)
|
)
|
||||||
for d in "${PY_PATHS[@]}"; do
|
for d in "${PY_PATHS[@]}"; do
|
||||||
case "$d" in
|
case "$d" in
|
||||||
/usr/local/*)
|
/usr/local|/usr/local/*)
|
||||||
mkdir -p "$d" || true
|
mkdir -p "$d" || true
|
||||||
chown -R "${APP_USER}:${APP_GROUP}" "$d" || true
|
chown -R "${APP_USER}:${APP_GROUP}" "$d" || true
|
||||||
chmod -R u+rwX,g+rwX "$d" || true
|
chmod -R u+rwX,g+rwX "$d" || true
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user