From a2fcb01dacc413f079023966d0eb99a46a3886c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Wed, 21 Mar 2018 20:52:49 +0100 Subject: [PATCH] public path should not be writable, but base path should --- framework/core/src/Install/InstallServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Install/InstallServiceProvider.php b/framework/core/src/Install/InstallServiceProvider.php index e57f47ab1..e110527e5 100644 --- a/framework/core/src/Install/InstallServiceProvider.php +++ b/framework/core/src/Install/InstallServiceProvider.php @@ -42,7 +42,7 @@ class InstallServiceProvider extends AbstractServiceProvider 'pdo_mysql', ]), new WritablePaths([ - public_path(), + base_path(), public_path('assets'), storage_path(), ])