This commit is contained in:
2025-07-30 22:02:59 -04:00
parent 5d71c964b7
commit 14e7d578bb
3 changed files with 5 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ def handle_request(rq: DeployerRequest):
deployment_id = str(int(time()))
domain_dir = f"{DEPLOYERDIR}/{domain}"
logs_dir = f"{domain_dir}/{deployment_id}"
logs_dir = f"{domain_dir}/logs/{deployment_id}"
os.makedirs(logs_dir, exist_ok=True)
build_log = f"{logs_dir}/build.log"