From 1b0f9b7a9c39c5b9dfc8aa6c64e8833dc2513aa9 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 27 Aug 2015 21:51:36 +0930 Subject: [PATCH] Fix incorrect chmod instruction --- framework/core/src/Install/Actions/IndexAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Install/Actions/IndexAction.php b/framework/core/src/Install/Actions/IndexAction.php index 75ae88c93..2812a2978 100644 --- a/framework/core/src/Install/Actions/IndexAction.php +++ b/framework/core/src/Install/Actions/IndexAction.php @@ -67,7 +67,7 @@ class IndexAction extends HtmlAction if (! is_writable($path)) { $errors[] = [ 'message' => 'The '.realpath($path).' directory is not writable.', - 'detail' => 'Please chmod this directory '.($path !== public_path() ? ' and its contents' : '').' to 0755.' + 'detail' => 'Please chmod this directory '.($path !== public_path() ? ' and its contents' : '').' to 0775.' ]; } }