From 4f1020894f714c4238fb9c6004938864fb15df70 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 16 Aug 2018 08:47:43 +0800 Subject: [PATCH] Asset.php --- Asset.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Asset.php b/Asset.php index 8e18ea31..65ac6908 100644 --- a/Asset.php +++ b/Asset.php @@ -179,12 +179,12 @@ class Pman_Core_Asset extends Pman { $compile_dir = $this->getCompileDir('js', $module, false); if(!empty($compile_dir)) { - System::rm(array('-r', $compiledir)); + System::rm(array('-r', $compile_dir)); } $compile_dir = $this->getCompileDir('css', $module, false); if(!empty($compile_dir)) { - System::rm(array('-r', $compiledir)); + System::rm(array('-r', $compile_dir)); } } -- 2.39.2