Removed Installer Folder When GUI Installation Completed
This commit is contained in:
parent
265aa14db1
commit
2b82957052
|
|
@ -73,6 +73,11 @@ class Install extends Command
|
|||
$result = shell_exec('composer dump-autoload');
|
||||
$this->info($result);
|
||||
|
||||
// removing the installer directory
|
||||
if (is_dir('public/installer')) {
|
||||
shell_exec('rm -rf public/installer');
|
||||
}
|
||||
|
||||
// final information
|
||||
$this->info('-----------------------------');
|
||||
$this->info('Congratulations!');
|
||||
|
|
|
|||
Loading…
Reference in New Issue