From f75bf5d3e5f2129065824a2635fa14d7b42e4042 Mon Sep 17 00:00:00 2001 From: gahusb Date: Sun, 25 Jan 2026 21:37:33 +0900 Subject: [PATCH] =?UTF-8?q?deployer=20=EC=8A=A4=ED=81=AC=EB=A6=BD=ED=8A=B8?= =?UTF-8?q?=20=EA=B6=8C=ED=95=9C=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deployer/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployer/app.py b/deployer/app.py index 9c6cb6b..7cc1391 100644 --- a/deployer/app.py +++ b/deployer/app.py @@ -29,7 +29,7 @@ async def webhook(req: Request): raise HTTPException(401, "bad signature") # 배포 스크립트 실행 - p = subprocess.run(["/scripts/deploy.sh"], capture_output=True, text=True) + p = subprocess.run(["/bin/bash", "/scripts/deploy.sh"], capture_output=True, text=True) if p.returncode != 0: raise HTTPException(500, f"deploy failed:\n{p.stdout}\n{p.stderr}")