From 8f6c6840b69d719fdb55e0203d2c5372262a1293 Mon Sep 17 00:00:00 2001 From: Strubbl <97055+Strubbl@users.noreply.github.com> Date: Wed, 15 Feb 2023 22:12:40 +0100 Subject: [PATCH 1/2] Update backup.php do not include cache directories into the backup --- config/backup.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/backup.php b/config/backup.php index f4a65df43..a356ea41e 100644 --- a/config/backup.php +++ b/config/backup.php @@ -28,6 +28,7 @@ return [ */ 'exclude' => [ base_path('.git'), + base_path('cache'), base_path('vendor'), base_path('node_modules'), ], From d093425511ad62d6822cd102da75b2b71e09cee9 Mon Sep 17 00:00:00 2001 From: Strubbl <97055+Strubbl@users.noreply.github.com> Date: Sat, 4 Mar 2023 22:49:04 +0100 Subject: [PATCH 2/2] Update backup.php fix directory path to the real cache directory --- config/backup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/backup.php b/config/backup.php index a356ea41e..8a6c07a7c 100644 --- a/config/backup.php +++ b/config/backup.php @@ -28,7 +28,7 @@ return [ */ 'exclude' => [ base_path('.git'), - base_path('cache'), + base_path('storage/app/public/cache'), base_path('vendor'), base_path('node_modules'), ],