From 4970384b10b4c4339353261072a9293b20dd6be3 Mon Sep 17 00:00:00 2001 From: Emilia Allison Date: Sun, 27 Oct 2024 23:26:49 -0400 Subject: [PATCH] hotfix: permissions --- src/deploy/_send.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deploy/_send.py b/src/deploy/_send.py index c2b7b47..9a4519c 100644 --- a/src/deploy/_send.py +++ b/src/deploy/_send.py @@ -103,7 +103,7 @@ def move_to_final(ssh_process: Popen, ssh_process.stdin.write(f"rm -rf {target_dir} \n") ssh_process.stdin.write(f"cp -r {target_temp_dir}_dir {target_dir} \n") ssh_process.stdin.write(f"chown -R ubuntu:www {target_dir} \n") - ssh_process.stdin.write(f"chmod -R 707 {target_dir} \n") + ssh_process.stdin.write(f"chmod -R 775 {target_dir} \n") ssh_process.stdin.write(f"rm -rf {target_temp_dir}" + f" {target_temp_dir}_dir \n") ssh_process.stdin.write("bye")