From 9f854bde4640ce2a6d029a74e077e4d6cad1e333 Mon Sep 17 00:00:00 2001 From: Boy132 Date: Thu, 7 Aug 2025 11:25:57 +0200 Subject: [PATCH] remove default url value --- app/Console/Commands/Plugin/MakePluginCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Plugin/MakePluginCommand.php b/app/Console/Commands/Plugin/MakePluginCommand.php index 7da393c6d..71d24942a 100644 --- a/app/Console/Commands/Plugin/MakePluginCommand.php +++ b/app/Console/Commands/Plugin/MakePluginCommand.php @@ -61,7 +61,7 @@ class MakePluginCommand extends Command return; } - $url = $this->option('url') ?? $this->ask('URL', 'https://github.com/' . $author . '/' . $id); + $url = $this->option('url') ?? $this->ask('URL'); $updateUrl = $this->option('updateUrl') ?? $this->ask('Update URL'); $panels = $this->option('panels') ?? $this->choice('Panels', [ 'admin' => 'Admin Area',