From 526d6a53e57e00d44a9069c991ac8d4945eaaa8e Mon Sep 17 00:00:00 2001 From: gahusb Date: Mon, 26 Jan 2026 01:17:40 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EA=B6=8C=ED=95=9C=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index c666d2d..14299cd 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -54,9 +54,11 @@ TARGET_GID=$(grep PGID .env | cut -d '=' -f2 || echo 1000) echo "Fixing permissions to $TARGET_UID:$TARGET_GID ..." chown -R "$TARGET_UID:$TARGET_GID" "$DST" || true +chmod -R 755 "$DST" || true # Repo 쪽도 혹시 모르니 if [ "$SRC" != "$DST" ]; then chown -R "$TARGET_UID:$TARGET_GID" "$SRC" || true + chmod -R 755 "$SRC" || true fi echo "DEPLOY_OK $TAG"