From d5e09fdaa59541682e8b24712e6f59f434368fc6 Mon Sep 17 00:00:00 2001 From: Timothy Kenno Handojo Date: Mon, 6 Apr 2026 21:15:28 +0700 Subject: [PATCH] lump all the runtime stuff to /run Signed-off-by: Timothy Kenno Handojo --- classes/Problems/EssentialFolders.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Problems/EssentialFolders.php b/classes/Problems/EssentialFolders.php index 80197ac..572294f 100644 --- a/classes/Problems/EssentialFolders.php +++ b/classes/Problems/EssentialFolders.php @@ -34,8 +34,8 @@ public function process() GRAV_TMP_PATH => true, GRAV_BACKUP_PATH => true, GRAV_WEBROOT => false, - GRAV_WEBROOT . '/images' => true, - GRAV_WEBROOT . '/assets' => true, + GRAV_WEBROOT . '/' . GRAV_RUN_PATH . '/images' => true, + GRAV_WEBROOT . '/' . GRAV_RUN_PATH . '/assets' => true, GRAV_WEBROOT . '/' . GRAV_USER_PATH .'/accounts' => true, GRAV_WEBROOT . '/' . GRAV_USER_PATH .'/data' => true, GRAV_WEBROOT . '/' . GRAV_USER_PATH .'/pages' => false,