From 30687c83c52de727930fc3d85d52f8a0a503fd29 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 29 Jan 2015 13:32:43 +0000 Subject: [PATCH] Chmod the public dir too for Heroku --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index e56e9bbb..1cfc082a 100644 --- a/composer.json +++ b/composer.json @@ -66,13 +66,13 @@ "scripts": { "post-install-cmd": [ "php artisan optimize", - "chmod -R 755 app/storage", + "chmod -R 755 app/storage public", "php artisan cachet:one-click-deploy" ], "post-update-cmd": [ "php artisan clear-compiled", "php artisan optimize", - "chmod -R 755 app/storage" + "chmod -R 755 app/storage public" ], "post-create-project-cmd": [ "php artisan key:generate"