From 1b70438c7a1e728c6f7e78ee669c9a8c5a89d362 Mon Sep 17 00:00:00 2001 From: Husnu Setiawan Date: Thu, 26 Feb 2026 09:51:28 +0700 Subject: [PATCH] remove fix permission --- Envoy.blade.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Envoy.blade.php b/Envoy.blade.php index 0a2f712..0fe025f 100644 --- a/Envoy.blade.php +++ b/Envoy.blade.php @@ -44,12 +44,6 @@ cd {{ $app_dir }}/current {{ $php_bin}} artisan storage:link @endtask -@task('fix_permissions') -sudo chown -R ubuntu:www-data {{ $new_release_dir }} -sudo find {{ $new_release_dir }} -type f -exec chmod 664 {} \; -sudo find {{ $new_release_dir }} -type d -exec chmod 775 {} \; -@endtask - @task('clean_old_releases') # This lists our releases by modification time and delete all but the 3 most recent. purging=$(ls -dt {{ $releases_dir }}/* | tail -n +5); @@ -69,7 +63,6 @@ sudo find {{ $new_release_dir }} -type d -exec chmod 775 {} \; @story('deploy',["on" => "prod"]) clone_repository run_composer -fix_permissions update_symlinks setup_laravel clean_old_releases