diff --git a/modules/system/console/CacheClear.php b/modules/system/console/CacheClear.php index 194316ca7..57939fa18 100644 --- a/modules/system/console/CacheClear.php +++ b/modules/system/console/CacheClear.php @@ -46,8 +46,11 @@ class CacheClear extends ClearCommand */ public static function fireInternal() { - $command = App::make('System\Console\CacheClear'); - $command->fire(); + try { + $command = App::make('System\Console\CacheClear'); + $command->fire(); + } + catch (\Exception $ex) {} } } \ No newline at end of file