From 200d7a33df78d9e7a830b6a3f0a1adefae016d34 Mon Sep 17 00:00:00 2001 From: jayvirsinh_gohil Date: Fri, 15 Nov 2019 16:26:04 +0530 Subject: [PATCH] remove temp directory --- app/Space/Updater.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Space/Updater.php b/app/Space/Updater.php index 2368140b..6dd0b165 100644 --- a/app/Space/Updater.php +++ b/app/Space/Updater.php @@ -40,8 +40,8 @@ class Updater // Create temp directory $path = 'temp-' . md5(mt_rand()); $path2 = 'temp2-' . md5(mt_rand()); - $temp_path = storage_path('app/temp') . '/' . $path; - $temp_path2 = storage_path('app/temp') . '/' . $path2; + $temp_path = storage_path('app') . '/' . $path; + $temp_path2 = storage_path('app') . '/' . $path2; if (!File::isDirectory($temp_path)) { File::makeDirectory($temp_path);