Skip to content

Commit

Permalink
git commit reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
Raza9798 committed Jun 17, 2024
1 parent d70d6a8 commit e95e910
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions src/Console/Commands/InitilizeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
use Intelrx\Rapidkit\assets\Banner;
use Intelrx\Rapidkit\Controller\BackupController;
use Intelrx\Rapidkit\Controller\TelescopeController;
use Symfony\Component\Process\Process;

class InitilizeCommand extends Command
{
Expand Down Expand Up @@ -39,13 +38,5 @@ public function handle()
(new BackupController())->configureDatabaseDump();
(new TelescopeController())->setup();
Artisan::call("rapid:support");

$process = new Process(['git', 'commit', '-m', "RapidKit package installed and configured."]);
$process->run();
if ($process->isSuccessful()) {
$this->info('Changes committed successfully!');
} else {
$this->error('Failed to commit changes.');
}
}
}
2 changes: 1 addition & 1 deletion src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class Config
{
const VERSION = '1.7.4';
const VERSION = '1.7.5';
}

0 comments on commit e95e910

Please sign in to comment.