From 202f561d2079b8d6664d9ae055db8d00c8a599ab Mon Sep 17 00:00:00 2001 From: uzulla Date: Sat, 27 Mar 2021 16:08:25 +0900 Subject: [PATCH] bug fix. #294 --- app/src/Model/SystemUpdateModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Model/SystemUpdateModel.php b/app/src/Model/SystemUpdateModel.php index 9c67b000..860455eb 100644 --- a/app/src/Model/SystemUpdateModel.php +++ b/app/src/Model/SystemUpdateModel.php @@ -209,7 +209,7 @@ public static function updateSystemByUrl(string $zip_url) try { static::updateSystemByLocalZip($zip_path); } finally { - @unlink($zip_url); + @unlink($zip_path); } }