Fixes https://github.com/octobercms/install/issues/14 - clearing the cache softly now
This commit is contained in:
parent
64f3a87e01
commit
f208e8d40d
|
|
@ -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) {}
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue