Removed Installer Folder When GUI Installation Completed

This commit is contained in:
devansh bawari 2021-07-07 10:50:04 +05:30
parent 265aa14db1
commit 2b82957052
1 changed files with 5 additions and 0 deletions

View File

@ -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!');