Skip to content

Commit

Permalink
fix merge whoopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga committed Apr 30, 2024
1 parent 5d1a51a commit 38ad724
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Console/Commands/StarterKitInstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
use Statamic\StarterKits\LicenseManager as StarterKitLicenseManager;

use function Laravel\Prompts\confirm;
use function Laravel\Prompts\text;

class StarterKitInstall extends Command
{
Expand Down Expand Up @@ -97,7 +98,7 @@ public function handle()
*/
protected function getPackageAndBranch()
{
$package = $this->argument('package') ?: $this->ask('Package');
$package = $this->argument('package') ?: text('Package');

$parts = explode(':', $package);

Expand Down

0 comments on commit 38ad724

Please sign in to comment.