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")